Add port publish example for particular host IP

Addresses #6478
This commit is contained in:
Ethan Bell
2018-04-29 21:51:15 -07:00
committed by Joao Fernandes
parent 1ab63c4b0f
commit 107a0ce000

View File

@@ -28,6 +28,7 @@ port to a port on the Docker host. Here are some examples.
| Flag value | Description |
|---------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
| `-p 8080:80` | Map TCP port 80 in the container to port 8080 on the Docker host. |
| `-p 192.168.1.100:8080:80` | Map TCP port 80 in the container to port 8080 on the Docker host for connections to host IP 192.168.1.100. |
| `-p 8080:80/udp` | Map UDP port 80 in the container to port 8080 on the Docker host. |
| `-p 8080:80/tcp -p 8080:80/udp` | Map TCP port 80 in the container to TCP port 8080 on the Docker host, and map UDP port 80 in the container to UDP port 8080 on the Docker host. |