August 2017
Intermediate to advanced
332 pages
9h 16m
English
Docker registry is available as a Docker image. To start this, we can run the following command:
$ docker run -d -p 5000:5000 --restart=always --name registry registry:2
The command starts the registry and makes it accessible via port 5000. The registry container is started from the registry image (version 2). The --restart=always option causes the container to automatically restart whenever it's down.
Read now
Unlock full access