summaryrefslogtreecommitdiff
path: root/cmd/podman/varlink/io.podman.varlink
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-01-10 14:39:39 -0600
committerbaude <bbaude@redhat.com>2019-01-10 15:21:42 -0600
commit7459c48863acea8453e0800124006a90ca82f646 (patch)
treea1c7ca5130f2f1cf496678a892d374d36b3e4c6a /cmd/podman/varlink/io.podman.varlink
parent36d96c19f947aeac2675afe64a3b482e54f9e4c4 (diff)
downloadpodman-7459c48863acea8453e0800124006a90ca82f646.tar.gz
podman-7459c48863acea8453e0800124006a90ca82f646.tar.bz2
podman-7459c48863acea8453e0800124006a90ca82f646.zip
Add varlink support for prune
Add the ability to prune unused images using the varlink API. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r--cmd/podman/varlink/io.podman.varlink4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink
index 4e8b69faf..7cd6c16b2 100644
--- a/cmd/podman/varlink/io.podman.varlink
+++ b/cmd/podman/varlink/io.podman.varlink
@@ -1015,6 +1015,10 @@ method MountContainer(name: string) -> (path: string)
# ~~~
method UnmountContainer(name: string, force: bool) -> ()
+# ImagesPrune removes all unused images from the local store. Upon successful pruning,
+# the IDs of the removed images are returned.
+method ImagesPrune() -> (pruned: []string)
+
# This function is not implemented yet.
method ListContainerPorts(name: string) -> (notimplemented: NotImplemented)