diff options
author | Sujil02 <sushah@redhat.com> | 2020-04-08 04:49:32 -0400 |
---|---|---|
committer | Sujil02 <sushah@redhat.com> | 2020-04-15 11:17:33 -0400 |
commit | ec4060aef6c77c049fc2c3b6438ebb5590f6ab69 (patch) | |
tree | 2ce43bc8b0a0c0b9c9bdf1d404c6339e06441a6b /libpod | |
parent | 37ed662f323ef4700ae14d441fb2264a59960baa (diff) | |
download | podman-ec4060aef6c77c049fc2c3b6438ebb5590f6ab69.tar.gz podman-ec4060aef6c77c049fc2c3b6438ebb5590f6ab69.tar.bz2 podman-ec4060aef6c77c049fc2c3b6438ebb5590f6ab69.zip |
Ability to prune container in api V2
Adds ability to prune containers for v2.
Adds client side prompt with force flag and filters options to prune.
Signed-off-by: Sujil02 <sushah@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/runtime_ctr.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go index 207ac6477..9d3e69d56 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -887,8 +887,9 @@ func (r *Runtime) PruneContainers(filterFuncs []ContainerFilter) (map[string]int continue } err = r.RemoveContainer(context.Background(), ctr, false, false) - pruneErrors[ctr.ID()] = err if err != nil { + pruneErrors[ctr.ID()] = err + } else { prunedContainers[ctr.ID()] = size } } |