Skip to content

1. Appendix: Pushing to DockerhubΒΆ

  1. 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>.
  2. Log into the Docker Hub from the command line using:

        docker login --username=yourdockerhubusername --email=[name@company.com](mailto:name@company.com)
    
    Enter your password when prompted.

  3. Check the IMAGE ID of your local xApp Docker image:

        docker images
    

  4. Tag your xApp Docker image by using its IMAGE ID:
        docker tag <image-id> yourdockerhubusername/<xapp-name>:<xapp-version>
    
  5. Push your xApp Docker image to the repository you created: ~~~ docker push yourdockerhubusername/