summaryrefslogtreecommitdiff
path: root/cmd/podman/varlink/io.podman.varlink
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-01-11 06:18:29 -0800
committerGitHub <noreply@github.com>2019-01-11 06:18:29 -0800
commit28c35cab8750f379a418e87ed6bd874a12ec158d (patch)
treed36fc6dc22b1461494e99268b2999344de7baafa /cmd/podman/varlink/io.podman.varlink
parent9368c24be6f289d21a0065df24471268ead59664 (diff)
parent7459c48863acea8453e0800124006a90ca82f646 (diff)
downloadpodman-28c35cab8750f379a418e87ed6bd874a12ec158d.tar.gz
podman-28c35cab8750f379a418e87ed6bd874a12ec158d.tar.bz2
podman-28c35cab8750f379a418e87ed6bd874a12ec158d.zip
Merge pull request #2135 from baude/varlinkprune
Add varlink support for prune
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 b7972a918..a3e8c050e 100644
--- a/cmd/podman/varlink/io.podman.varlink
+++ b/cmd/podman/varlink/io.podman.varlink
@@ -1016,6 +1016,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)