diff --git a/local/compose/create.go b/local/compose/create.go index 311fe83c0..e4d297f07 100644 --- a/local/compose/create.go +++ b/local/compose/create.go @@ -850,6 +850,9 @@ func buildTmpfsOptions(tmpfs *types.ServiceVolumeTmpfs) *mount.TmpfsOptions { } func buildDefaultNetworkConfig(s types.ServiceConfig, networkMode container.NetworkMode, containerName string) *network.NetworkingConfig { + if len(s.Networks) == 0 { + return nil + } config := map[string]*network.EndpointSettings{} net := string(networkMode) config[net] = &network.EndpointSettings{