diff options
author | zhangguanzhang <zhangguanzhang@qq.com> | 2020-08-08 18:35:21 +0800 |
---|---|---|
committer | zhangguanzhang <zhangguanzhang@qq.com> | 2020-08-11 13:47:54 +0800 |
commit | 6ebd257245a611246bb3ce9c6712c5eb19a9efb4 (patch) | |
tree | 737a742e1328cc08d91e54956a6306212caada28 /pkg | |
parent | df0ad51075102c49d170bfeb77085b3c9c251ed6 (diff) | |
download | podman-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 'pkg')
-rw-r--r-- | pkg/domain/entities/container_ps.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/container_ps.go b/pkg/domain/entities/container_ps.go index 50dd4933b..ed40a37ab 100644 --- a/pkg/domain/entities/container_ps.go +++ b/pkg/domain/entities/container_ps.go @@ -56,6 +56,8 @@ type ListContainer struct { StartedAt int64 // State of container State string + // Status is a human-readable approximation of a duration for json output + Status string } // ListContainer Namespaces contains the identifiers of the container's Linux namespaces |