Browse Source

Merge pull request #1657 from ndeloof/multi_ports

support mulitple bindings for same target port
Guillaume Tardif 4 years ago
parent
commit
0a02f7d108
1 changed files with 1 additions and 1 deletions
  1. 1 1
      local/compose/create.go

+ 1 - 1
local/compose/create.go

@@ -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,
 		}