mirror of https://github.com/docker/compose.git
Merge pull request #1657 from ndeloof/multi_ports
support mulitple bindings for same target port
This commit is contained in:
commit
0a02f7d108
|
@ -532,7 +532,7 @@ func buildContainerPortBindingOptions(s types.ServiceConfig) nat.PortMap {
|
|||
bindings := nat.PortMap{}
|
||||
for _, port := range s.Ports {
|
||||
p := nat.Port(fmt.Sprintf("%d/%s", port.Target, port.Protocol))
|
||||
bind := []nat.PortBinding{}
|
||||
bind := bindings[p]
|
||||
binding := nat.PortBinding{
|
||||
HostIP: port.HostIP,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue