Merge pull request #13492 from calavera/donot_force_syscall_unmount_on_cleanup

Do not force `syscall.Unmount` on container cleanup.
Upstream-commit: bd18d8625090c62605fa34fb8ccf703c6f59ec9e
Component: engine
This commit is contained in:
Arnaud Porterie
2015-05-26 15:23:16 -07:00
+1 -1
View File
@@ -347,7 +347,7 @@ func (container *Container) cleanup() {
container.daemon.unregisterExecCommand(eConfig)
}
container.UnmountVolumes(true)
container.UnmountVolumes(false)
}
func (container *Container) KillSig(sig int) error {