Specify registry volume location

Makes sense specify where the docker volume path is present
for image storage in the kolla host as kolla-vagrant does in the
bootstrapping step. With this way users will know where exactly
their images are stored when re-utilize registry containers

Change-Id: I7f5c46ebab8ec4287a40cd6bd34e75eeb919a24f
This commit is contained in:
Eduardo Gonzalez 2016-05-21 19:44:13 +02:00
parent d48883b3a4
commit 776d9418dd

@ -237,7 +237,11 @@ Running Docker registry is easy. Just use the following command:
::
docker run -d -p 4000:5000 --restart=always --name registry registry
docker run -d -p 4000:5000 --restart=always --name registry \
-v <local_data_path>:/var/lib/registry registry
Note: ``<local_data_path>`` points to the folder where Docker registry
will store Docker images on the local host.
The default port of Docker registry is 5000.
But the 5000 port is also the port of keystone-api.