2015-06-21 16:41:38 -04:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "port"
|
|
|
|
description = "The port command description and usage"
|
|
|
|
keywords = ["port, mapping, container"]
|
|
|
|
[menu.main]
|
|
|
|
parent = "smn_cli"
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
# port
|
|
|
|
|
2015-10-03 11:56:41 -04:00
|
|
|
Usage: docker port [OPTIONS] CONTAINER [PRIVATE_PORT[/PROTO]]
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
List port mappings for the CONTAINER, or lookup the public-facing port that is
|
|
|
|
NAT-ed to the PRIVATE_PORT
|
|
|
|
|
2015-12-23 09:37:06 -05:00
|
|
|
--help Print usage
|
2015-10-03 11:56:41 -04:00
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
You can find out all the ports mapped by not specifying a `PRIVATE_PORT`, or
|
|
|
|
just a specific mapping:
|
|
|
|
|
2016-01-20 23:26:40 -05:00
|
|
|
$ docker ps
|
2015-06-21 16:41:38 -04:00
|
|
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
|
|
|
b650456536c7 busybox:latest top 54 minutes ago Up 54 minutes 0.0.0.0:1234->9876/tcp, 0.0.0.0:4321->7890/tcp test
|
|
|
|
$ docker port test
|
|
|
|
7890/tcp -> 0.0.0.0:4321
|
|
|
|
9876/tcp -> 0.0.0.0:1234
|
|
|
|
$ docker port test 7890/tcp
|
|
|
|
0.0.0.0:4321
|
|
|
|
$ docker port test 7890/udp
|
|
|
|
2014/06/24 11:53:36 Error: No public port '7890/udp' published for test
|
|
|
|
$ docker port test 7890
|
|
|
|
0.0.0.0:4321
|