mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Do not force syscall.Unmount
on container cleanup.
This is not necessary and it's a regression from the old behavior. Signed-off-by: David Calavera <david.calavera@gmail.com>
This commit is contained in:
parent
fc679bebb9
commit
f78dce152c
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ func (container *Container) cleanup() {
|
||||||
container.daemon.unregisterExecCommand(eConfig)
|
container.daemon.unregisterExecCommand(eConfig)
|
||||||
}
|
}
|
||||||
|
|
||||||
container.UnmountVolumes(true)
|
container.UnmountVolumes(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (container *Container) KillSig(sig int) error {
|
func (container *Container) KillSig(sig int) error {
|
||||||
|
|
Loading…
Reference in a new issue