summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/containers.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-10 14:11:30 +0200
committerGitHub <noreply@github.com>2020-04-10 14:11:30 +0200
commit2a8db9d17c5dd762366fe7c90304e76337e5d668 (patch)
tree68c8f58631d70cdfff949d3a171581b236525a8e /pkg/domain/entities/containers.go
parent838b5e1e387f6f6bdae06f053684832f77ca8796 (diff)
parent7d0e0a7129e18ca7295cf4b0fbec22d0df78d3dd (diff)
downloadpodman-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.go18
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
+}