diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-09 16:11:38 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-09 16:59:33 -0500 |
commit | 7d0e0a7129e18ca7295cf4b0fbec22d0df78d3dd (patch) | |
tree | 29102563982befd9a07106ab93a8ebab43b983f4 /pkg/domain/entities/container_ps.go | |
parent | 3a4bd395164c97bf4b8b1fcb97f2475ca188866e (diff) | |
download | podman-7d0e0a7129e18ca7295cf4b0fbec22d0df78d3dd.tar.gz podman-7d0e0a7129e18ca7295cf4b0fbec22d0df78d3dd.tar.bz2 podman-7d0e0a7129e18ca7295cf4b0fbec22d0df78d3dd.zip |
v2podman container cleanup
add the ability to clean up after a container has attempted to run. this is also important for podman run --rm --rmi.
also included are fixes and tweaks to various code bits to correct regressions on output.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/entities/container_ps.go')
-rw-r--r-- | pkg/domain/entities/container_ps.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/container_ps.go b/pkg/domain/entities/container_ps.go index 8a8666ff9..f07b0364f 100644 --- a/pkg/domain/entities/container_ps.go +++ b/pkg/domain/entities/container_ps.go @@ -68,7 +68,7 @@ func (l ListContainer) State() string { state = "Up " + t + " ago" case "configured": state = "Created" - case "exited": + case "exited", "stopped": t := units.HumanDuration(time.Since(time.Unix(l.ExitedAt, 0))) state = fmt.Sprintf("Exited (%d) %s ago", l.ExitCode, t) default: |