From 3921f10a729054c23296f392b0f271c1ac5e5770 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 6 Feb 2018 16:51:05 -0500 Subject: cleanup network stack as well as storage when container shuts down. This patch will cleanup the network stack when the container exits Signed-off-by: Daniel J Walsh --- cmd/podman/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/podman/run.go') diff --git a/cmd/podman/run.go b/cmd/podman/run.go index 97f60cdbf..2f3468fd2 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -145,5 +145,5 @@ func runCmd(c *cli.Context) error { if createConfig.Rm { return runtime.RemoveContainer(ctr, true) } - return ctr.CleanupStorage() + return ctr.Cleanup() } -- cgit v1.2.3-54-g00ecf