diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-30 10:41:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-30 10:41:10 +0100 |
commit | 76019c31f535c6473e5f7d645cf42ca4477e2c33 (patch) | |
tree | e2d595054ce380b5074bf0217e0c405ded94178a /cmd/podman/varlink/io.podman.varlink | |
parent | ad5579e1d9905996612dd135467ee2ee5f62b7d3 (diff) | |
parent | 656033ca969477ed809cbed57e752f959899d4f8 (diff) | |
download | podman-76019c31f535c6473e5f7d645cf42ca4477e2c33.tar.gz podman-76019c31f535c6473e5f7d645cf42ca4477e2c33.tar.bz2 podman-76019c31f535c6473e5f7d645cf42ca4477e2c33.zip |
Merge pull request #2205 from baude/prunelikedocker
podman image prune -- implement all flag
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 86c3eb7ff..80f0bbdfe 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -1019,7 +1019,7 @@ 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) +method ImagesPrune(all: bool) -> (pruned: []string) # This function is not implemented yet. method ListContainerPorts(name: string) -> (notimplemented: NotImplemented) |