Update docs for new publish syntax (#5323)

This commit is contained in:
Misty Stanley-Jones 2017-11-17 12:08:29 -08:00 committed by GitHub
parent 3d5f8b0380
commit 936007524a

View file

@ -127,7 +127,7 @@ $ docker run -d \
registry:2 registry:2
``` ```
If you want to change the port the registry listens on within the container, you If you want to change the port the registry listens on within the container, you
can use the environment variable `REGISTRY_HTTP_ADDR` to change it. This command can use the environment variable `REGISTRY_HTTP_ADDR` to change it. This command
causes the registry to listen on port 5001 within the container: causes the registry to listen on port 5001 within the container:
@ -325,7 +325,7 @@ $ docker service create \
-e REGISTRY_HTTP_ADDR=0.0.0.0:80 \ -e REGISTRY_HTTP_ADDR=0.0.0.0:80 \
-e REGISTRY_HTTP_TLS_CERTIFICATE=/run/secrets/domain.crt \ -e REGISTRY_HTTP_TLS_CERTIFICATE=/run/secrets/domain.crt \
-e REGISTRY_HTTP_TLS_KEY=/run/secrets/domain.key \ -e REGISTRY_HTTP_TLS_KEY=/run/secrets/domain.key \
-p 80:80 \ --publish target=80,port=80 \
--replicas 1 \ --replicas 1 \
registry:2 registry:2
``` ```