From f78dce152c3c67bf262648028ff7932ca461b6fd Mon Sep 17 00:00:00 2001 From: David Calavera Date: Tue, 26 May 2015 14:28:26 -0700 Subject: [PATCH] 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 --- daemon/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/container.go b/daemon/container.go index 8602152bb4..4e5551370f 100644 --- a/daemon/container.go +++ b/daemon/container.go @@ -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 {