July 2018
Intermediate to advanced
504 pages
11h 34m
English
Now we know how to search, pull, remove, save, load, and list available images. The last piece we are missing is how to push images back to Docker Hub or a private registry.
To upload an image to Docker Hub, we need to do a few tricks and follow these steps:
$ docker loginUsername: #Enter your username herePassword: #Enter your password hereLogin Succeeded
$ docker tag httpd:latest flashdumper/httpd:latest
$ docker push flashdumper/httpd:latest
The output of the preceding ...
Read now
Unlock full access