2015-03-24 23:57:23 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2015-05-05 00:18:28 -04:00
|
|
|
Cli "github.com/docker/docker/cli"
|
2015-03-24 23:57:23 -04:00
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
2015-06-30 12:41:01 -04:00
|
|
|
"github.com/docker/docker/pkg/nat"
|
2015-03-24 23:57:23 -04:00
|
|
|
)
|
|
|
|
|
2015-03-25 13:34:41 -04:00
|
|
|
// CmdPort lists port mappings for a container.
|
|
|
|
// If a private port is specified, it also shows the public-facing port that is NATed to the private port.
|
|
|
|
//
|
|
|
|
// Usage: docker port CONTAINER [PRIVATE_PORT[/PROTO]]
|
2015-03-24 23:57:23 -04:00
|
|
|
func (cli *DockerCli) CmdPort(args ...string) error {
|
2015-10-08 08:46:21 -04:00
|
|
|
cmd := Cli.Subcmd("port", []string{"CONTAINER [PRIVATE_PORT[/PROTO]]"}, Cli.DockerCommands["port"].Description, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
cmd.Require(flag.Min, 1)
|
2015-07-03 05:26:09 -04:00
|
|
|
|
2015-03-28 21:22:46 -04:00
|
|
|
cmd.ParseFlags(args, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
2015-12-04 11:42:33 -05:00
|
|
|
c, err := cli.client.ContainerInspect(cmd.Arg(0))
|
2015-03-24 23:57:23 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if cmd.NArg() == 2 {
|
|
|
|
var (
|
|
|
|
port = cmd.Arg(1)
|
|
|
|
proto = "tcp"
|
|
|
|
parts = strings.SplitN(port, "/", 2)
|
|
|
|
)
|
|
|
|
|
|
|
|
if len(parts) == 2 && len(parts[1]) != 0 {
|
|
|
|
port = parts[0]
|
|
|
|
proto = parts[1]
|
|
|
|
}
|
|
|
|
natPort := port + "/" + proto
|
2015-07-15 23:45:48 -04:00
|
|
|
newP, err := nat.NewPort(proto, port)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if frontends, exists := c.NetworkSettings.Ports[newP]; exists && frontends != nil {
|
2015-03-24 23:57:23 -04:00
|
|
|
for _, frontend := range frontends {
|
2015-07-21 09:43:32 -04:00
|
|
|
fmt.Fprintf(cli.out, "%s:%s\n", frontend.HostIP, frontend.HostPort)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("Error: No public port '%s' published for %s", natPort, cmd.Arg(0))
|
|
|
|
}
|
|
|
|
|
2015-04-04 00:06:48 -04:00
|
|
|
for from, frontends := range c.NetworkSettings.Ports {
|
2015-03-24 23:57:23 -04:00
|
|
|
for _, frontend := range frontends {
|
2015-07-21 09:43:32 -04:00
|
|
|
fmt.Fprintf(cli.out, "%s -> %s:%s\n", from, frontend.HostIP, frontend.HostPort)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|