mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add -p PORT as a valid format specification
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)
This commit is contained in:
parent
bb8ea1fdc1
commit
e4d2a8231a
4 changed files with 4 additions and 4 deletions
|
@ -186,7 +186,7 @@ exposed ports, use **docker port**.
|
||||||
|
|
||||||
**-p**, **--publish**=[]
|
**-p**, **--publish**=[]
|
||||||
Publish a container's port to the host (format: ip:hostPort:containerPort |
|
Publish a container's port to the host (format: ip:hostPort:containerPort |
|
||||||
ip::containerPort | hostPort:containerPort) (use **docker port** to see the
|
ip::containerPort | hostPort:containerPort | containerPort) (use **docker port** to see the
|
||||||
actual mapping)
|
actual mapping)
|
||||||
|
|
||||||
**--privileged**=*true*|*false*
|
**--privileged**=*true*|*false*
|
||||||
|
|
|
@ -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.
|
'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-all=false Publish all exposed ports to the host interfaces
|
||||||
-p, --publish=[] Publish a container's port to the host
|
-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)
|
(use 'docker port' to see the actual mapping)
|
||||||
--privileged=false Give extended privileges to this container
|
--privileged=false Give extended privileges to this container
|
||||||
--restart="" Restart policy to apply when a container exits (no, on-failure[:max-retry], always)
|
--restart="" Restart policy to apply when a container exits (no, on-failure[:max-retry], always)
|
||||||
|
|
|
@ -345,7 +345,7 @@ or override the Dockerfile's exposed defaults:
|
||||||
-P=false : Publish all exposed ports to the host interfaces
|
-P=false : Publish all exposed ports to the host interfaces
|
||||||
-p=[] : Publish a container᾿s port to the host (format:
|
-p=[] : Publish a container᾿s port to the host (format:
|
||||||
ip:hostPort:containerPort | ip::containerPort |
|
ip:hostPort:containerPort | ip::containerPort |
|
||||||
hostPort:containerPort)
|
hostPort:containerPort | containerPort)
|
||||||
(use 'docker port' to see the actual mapping)
|
(use 'docker port' to see the actual mapping)
|
||||||
--link="" : Add link to another container (name:alias)
|
--link="" : Add link to another container (name:alias)
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
PortSpecTemplate = "ip:hostPort:containerPort"
|
PortSpecTemplate = "ip:hostPort:containerPort"
|
||||||
PortSpecTemplateFormat = "ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort"
|
PortSpecTemplateFormat = "ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort | containerPort"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PortBinding struct {
|
type PortBinding struct {
|
||||||
|
|
Loading…
Reference in a new issue