...
sudo groupadd docker
sudo usermod -aG docker %USER%$USER
sudo shutdown now -r
Test Docker install
...
- First, you need to login Docker to the onap repository
docker login nexus3.onap.org:10001
- Use your Linux Foundation credentials for the login
- Note: It appears that if you guess your password too many times, you will be locked out.
- Now we pull down the image
- At the time of this writing, the latest version of the ccsdk-odlsli-image is “v0.1.0”, but this could change in the future
- Pull the image with:
docker pull nexus3.onap.org:10001/onap/ccsdk-odlsli-alpine-image:v00.4.1 .0(For Dublin Release)
- Once it is done, we need to tag this image with the correct name that the appc build will be expecting:
docker tag nexus3.onap.org:10001/onap/ccsdk-odlsli-alpine-image:v00.4.1 .0 onap/ccsdk-odlsli-alpine-image:v00.4.1.0
Building with Maven on the command line
...