mirror of https://github.com/docker/compose.git
don't set aliasses if no network binding was declared
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
6a24758174
commit
334e362d91
|
@ -850,6 +850,9 @@ func buildTmpfsOptions(tmpfs *types.ServiceVolumeTmpfs) *mount.TmpfsOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildDefaultNetworkConfig(s types.ServiceConfig, networkMode container.NetworkMode, containerName string) *network.NetworkingConfig {
|
func buildDefaultNetworkConfig(s types.ServiceConfig, networkMode container.NetworkMode, containerName string) *network.NetworkingConfig {
|
||||||
|
if len(s.Networks) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
config := map[string]*network.EndpointSettings{}
|
config := map[string]*network.EndpointSettings{}
|
||||||
net := string(networkMode)
|
net := string(networkMode)
|
||||||
config[net] = &network.EndpointSettings{
|
config[net] = &network.EndpointSettings{
|
||||||
|
|
Loading…
Reference in New Issue