diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-02 07:46:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-02 07:46:05 -0400 |
commit | b9d8c638132654b1c40c18bc66620a5523267086 (patch) | |
tree | 7ed11e1cda58c57083bdffba8ed99d3b046e7901 /pkg/domain/entities/container_ps.go | |
parent | 375fbb9805ec9dcd54f039536475bb74847caf08 (diff) | |
parent | c67593df1240adbbd425642740f321c3ca9c6654 (diff) | |
download | podman-b9d8c638132654b1c40c18bc66620a5523267086.tar.gz podman-b9d8c638132654b1c40c18bc66620a5523267086.tar.bz2 podman-b9d8c638132654b1c40c18bc66620a5523267086.zip |
Merge pull request #11820 from jwhonce/issues/11810
[NO TESTS NEEDED] Ignore removed containers
Diffstat (limited to 'pkg/domain/entities/container_ps.go')
-rw-r--r-- | pkg/domain/entities/container_ps.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/domain/entities/container_ps.go b/pkg/domain/entities/container_ps.go index 7c255b0ea..58f231a2f 100644 --- a/pkg/domain/entities/container_ps.go +++ b/pkg/domain/entities/container_ps.go @@ -10,7 +10,7 @@ import ( "github.com/pkg/errors" ) -// Listcontainer describes a container suitable for listing +// ListContainer describes a container suitable for listing type ListContainer struct { // AutoRemove AutoRemove bool @@ -18,7 +18,7 @@ type ListContainer struct { Command []string // Container creation time Created time.Time - // Human readable container creation time. + // Human-readable container creation time. CreatedAt string // If container has exited/stopped Exited bool @@ -65,7 +65,7 @@ type ListContainer struct { Status string } -// ListContainer Namespaces contains the identifiers of the container's Linux namespaces +// ListContainerNamespaces contains the identifiers of the container's Linux namespaces type ListContainerNamespaces struct { // Mount namespace MNT string `json:"Mnt,omitempty"` |