August 2017
Intermediate to advanced
332 pages
9h 16m
English
In order to push the created image, we need to tag it according to the naming convention:
<registry_address>/<image_name>:<tag>
The "registry_address" can be:
Let's tag the image to use Docker Hub:
$ docker tag ubuntu_with_python leszko/ubuntu_with_python:1
If the repository has access restriction configured, we need to authorize it first:
$ docker login --username <username> --password <password>
Read now
Unlock full access