1
0
mirror of https://github.com/docker/cli.git synced 2026-01-22 03:22:01 +03:00

add -p PORT as a valid format specification

Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)
Upstream-commit: 70abfec849
Component: cli
This commit is contained in:
Sven Dowideit
2014-09-09 11:16:02 +10:00
committed by Tibor Vass
parent ed8d0aaefb
commit b46d15a5d8
2 changed files with 2 additions and 2 deletions

View File

@@ -1010,7 +1010,7 @@ removed before the image is removed.
'host': use the host network stack inside the container. Note: the host mode gives the container full access to local system services such as D-bus and is therefore considered insecure.
-P, --publish-all=false Publish all exposed ports to the host interfaces
-p, --publish=[] Publish a container's port to the host
format: ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort
format: ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort | containerPort
(use 'docker port' to see the actual mapping)
--privileged=false Give extended privileges to this container
--restart="" Restart policy to apply when a container exits (no, on-failure[:max-retry], always)

View File

@@ -345,7 +345,7 @@ or override the Dockerfile's exposed defaults:
-P=false : Publish all exposed ports to the host interfaces
-p=[] : Publish a container᾿s port to the host (format:
ip:hostPort:containerPort | ip::containerPort |
hostPort:containerPort)
hostPort:containerPort | containerPort)
(use 'docker port' to see the actual mapping)
--link="" : Add link to another container (name:alias)