diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-27 21:27:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 21:27:49 +0200 |
commit | 8642e256f2036f4263b9817322cde7eec8b0915c (patch) | |
tree | 32d83f5e9128e7daab4280d2053ebbef7fd558c0 /pkg/domain/entities | |
parent | 618d4be212ab42e07b3f98e75412529025b37b71 (diff) | |
parent | a83d1a27721162757808bc6c4f365ba1d2ec7510 (diff) | |
download | podman-8642e256f2036f4263b9817322cde7eec8b0915c.tar.gz podman-8642e256f2036f4263b9817322cde7eec8b0915c.tar.bz2 podman-8642e256f2036f4263b9817322cde7eec8b0915c.zip |
Merge pull request #5978 from rhatdan/ports
Make podman container list == podman ps
Diffstat (limited to 'pkg/domain/entities')
-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 d5159fb85..fd94d93be 100644 --- a/pkg/domain/entities/container_ps.go +++ b/pkg/domain/entities/container_ps.go @@ -25,6 +25,8 @@ type ListContainer struct { ID string `json:"Id"` // Container image Image string + // Container image ID + ImageID string // If this container is a Pod infra container IsInfra bool // Labels for container |