1. Appendix: Pushing to DockerhubΒΆ
- One example remote Docker image repository is Dockerhub. Create an account and log in on https://hub.docker.com/. Click on Create Repository and name it <xapp-name>.
-
Log into the Docker Hub from the command line using:
Enter your password when prompted.docker login --username=yourdockerhubusername --email=[name@company.com](mailto:name@company.com)
-
Check the IMAGE ID of your local xApp Docker image:
docker images
- Tag your xApp Docker image by using its IMAGE ID:
docker tag <image-id> yourdockerhubusername/<xapp-name>:<xapp-version>
- Push your xApp Docker image to the repository you created:
~~~
docker push yourdockerhubusername/