August 2017
Intermediate to advanced
332 pages
9h 16m
English
Images can be tagged. We've already done this while creating our own images, for example, in the case of building the hello-world_python image:
$ docker build -t hello-world_python .
The -t flag describes the tag of the image. If we didn't use it, then the image would be built without any tags and, as a result, we would have to address it by its ID (hash) in order to run the container.
The image can have multiple tags, and they should follow the naming convention:
<registry_address>/<image_name>:<version>
The tag consists of the following parts:
Read now
Unlock full access