diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-10 14:11:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 14:11:30 +0200 |
commit | 2a8db9d17c5dd762366fe7c90304e76337e5d668 (patch) | |
tree | 68c8f58631d70cdfff949d3a171581b236525a8e /pkg/domain/entities/containers.go | |
parent | 838b5e1e387f6f6bdae06f053684832f77ca8796 (diff) | |
parent | 7d0e0a7129e18ca7295cf4b0fbec22d0df78d3dd (diff) | |
download | podman-2a8db9d17c5dd762366fe7c90304e76337e5d668.tar.gz podman-2a8db9d17c5dd762366fe7c90304e76337e5d668.tar.bz2 podman-2a8db9d17c5dd762366fe7c90304e76337e5d668.zip |
Merge pull request #5782 from baude/v2containercleanup
v2podman container cleanup
Diffstat (limited to 'pkg/domain/entities/containers.go')
-rw-r--r-- | pkg/domain/entities/containers.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 98f9f9471..51e6cc751 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -265,3 +265,21 @@ type ContainerRunReport struct { ExitCode int Id string } + +// ContainerCleanupOptions are the CLI values for the +// cleanup command +type ContainerCleanupOptions struct { + All bool + Latest bool + Remove bool + RemoveImage bool +} + +// ContainerCleanupReport describes the response from a +// container cleanup +type ContainerCleanupReport struct { + CleanErr error + Id string + RmErr error + RmiErr error +} |