mirror of https://github.com/docker/docs.git
Merge pull request #17187 from mavenugo/dopts
Fail the container start if the network has been removed
This commit is contained in:
commit
48147d287b
|
|
@ -894,12 +894,8 @@ func (container *Container) allocateNetwork() error {
|
||||||
|
|
||||||
for _, n := range settings {
|
for _, n := range settings {
|
||||||
if err := container.connectToNetwork(n, updateSettings); err != nil {
|
if err := container.connectToNetwork(n, updateSettings); err != nil {
|
||||||
if updateSettings {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// dont fail a container restart case if the user removed the network
|
|
||||||
logrus.Warnf("Could not connect container %s : %v", container.ID, err)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return container.writeHostConfig()
|
return container.writeHostConfig()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue