diff options
author | baude <bbaude@redhat.com> | 2019-01-10 14:39:39 -0600 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-02-08 15:02:28 -0500 |
commit | 28f5d25e8dabb6647699c2ccab8621cefac37d3b (patch) | |
tree | fd6f995f885ad4709202a7c8f35397eb096e7c20 /pkg/varlinkapi | |
parent | 9dfefed334cda999b55820368507209f8c6721b0 (diff) | |
download | podman-28f5d25e8dabb6647699c2ccab8621cefac37d3b.tar.gz podman-28f5d25e8dabb6647699c2ccab8621cefac37d3b.tar.bz2 podman-28f5d25e8dabb6647699c2ccab8621cefac37d3b.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 'pkg/varlinkapi')
-rw-r--r-- | pkg/varlinkapi/images.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go index 8f8934025..4a4f20031 100644 --- a/pkg/varlinkapi/images.go +++ b/pkg/varlinkapi/images.go @@ -620,3 +620,21 @@ func (i *LibpodAPI) ContainerRunlabel(call iopodman.VarlinkCall, input iopodman. } return call.ReplyContainerRunlabel() } + +// ImagesPrune .... +func (i *LibpodAPI) ImagesPrune(call iopodman.VarlinkCall) error { + var ( + pruned []string + ) + pruneImages, err := i.Runtime.ImageRuntime().GetPruneImages() + if err != nil { + return err + } + for _, i := range pruneImages { + if err := i.Remove(true); err != nil { + return call.ReplyErrorOccurred(err.Error()) + } + pruned = append(pruned, i.ID()) + } + return call.ReplyImagesPrune(pruned) +} |