From 7fc1a329bd014d61f9895fc212aef452f6fb8f84 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Fri, 22 Jun 2018 16:44:59 -0400 Subject: Add `podman container cleanup` to CLI When we run containers in detach mode, nothing cleans up the network stack or the mount points. This patch will tell conmon to execute the cleanup code when the container exits. It can also be called to attempt to cleanup previously running containers. Signed-off-by: Daniel J Walsh Closes: #942 Approved by: mheon --- pkg/inspect/inspect.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/inspect') diff --git a/pkg/inspect/inspect.go b/pkg/inspect/inspect.go index 765ee43a7..61776f1e2 100644 --- a/pkg/inspect/inspect.go +++ b/pkg/inspect/inspect.go @@ -167,6 +167,7 @@ type ContainerInspectData struct { Mounts []specs.Mount `json:"Mounts"` Dependencies []string `json:"Dependencies"` NetworkSettings *NetworkSettings `json:"NetworkSettings"` //TODO + ExitCommand []string `json:"ExitCommand"` } // ContainerInspectState represents the state of a container. -- cgit v1.2.3-54-g00ecf