summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorzhangguanzhang <zhangguanzhang@qq.com>2020-08-08 18:35:21 +0800
committerzhangguanzhang <zhangguanzhang@qq.com>2020-08-11 13:47:54 +0800
commit6ebd257245a611246bb3ce9c6712c5eb19a9efb4 (patch)
tree737a742e1328cc08d91e54956a6306212caada28 /cmd/podman
parentdf0ad51075102c49d170bfeb77085b3c9c251ed6 (diff)
downloadpodman-6ebd257245a611246bb3ce9c6712c5eb19a9efb4.tar.gz
podman-6ebd257245a611246bb3ce9c6712c5eb19a9efb4.tar.bz2
podman-6ebd257245a611246bb3ce9c6712c5eb19a9efb4.zip
Add the Status field in the ps --format=json
Signed-off-by: zhangguanzhang <zhangguanzhang@qq.com>
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/containers/ps.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/containers/ps.go b/cmd/podman/containers/ps.go
index 64271031d..ebb6ed98f 100644
--- a/cmd/podman/containers/ps.go
+++ b/cmd/podman/containers/ps.go
@@ -109,6 +109,7 @@ func jsonOut(responses []entities.ListContainer) error {
r := make([]entities.ListContainer, 0)
for _, con := range responses {
con.CreatedAt = units.HumanDuration(time.Since(time.Unix(con.Created, 0))) + " ago"
+ con.Status = psReporter{con}.Status()
r = append(r, con)
}
b, err := json.MarshalIndent(r, "", " ")