diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-02-06 16:51:05 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2018-02-08 06:42:21 -0500 |
commit | 3921f10a729054c23296f392b0f271c1ac5e5770 (patch) | |
tree | b129bb402157b23eb4f8228818cc94d87b9fd88b /cmd/podman/run.go | |
parent | 8fdccb77648f5b772c6bae98fce4734b1a54ed4a (diff) | |
download | podman-3921f10a729054c23296f392b0f271c1ac5e5770.tar.gz podman-3921f10a729054c23296f392b0f271c1ac5e5770.tar.bz2 podman-3921f10a729054c23296f392b0f271c1ac5e5770.zip |
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 <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/run.go')
-rw-r--r-- | cmd/podman/run.go | 2 |
1 files changed, 1 insertions, 1 deletions
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() } |