diff options
author | Kunal Kushwaha <kunal.kushwaha@gmail.com> | 2019-11-29 14:28:34 +0900 |
---|---|---|
committer | Kunal Kushwaha <kunal.kushwaha@gmail.com> | 2019-11-29 15:28:55 +0900 |
commit | 10c37a2c93c76fb698e41dbdf076793c9a16d02b (patch) | |
tree | c37aebdb60b93c42b1c8c79894dec6828f3ad047 /cmd/podman/system_prune.go | |
parent | 0602ce4dc04ec1b78724019e03066b8562877b73 (diff) | |
download | podman-10c37a2c93c76fb698e41dbdf076793c9a16d02b.tar.gz podman-10c37a2c93c76fb698e41dbdf076793c9a16d02b.tar.bz2 podman-10c37a2c93c76fb698e41dbdf076793c9a16d02b.zip |
filter added to container prune command
filter flag helps to filter the containers based on
labels, until(time), name, etc for prune command.
Signed-off-by: Kunal Kushwaha <kunal.kushwaha@gmail.com>
Diffstat (limited to 'cmd/podman/system_prune.go')
-rw-r--r-- | cmd/podman/system_prune.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/system_prune.go b/cmd/podman/system_prune.go index ae5d7ed2d..74fdcde99 100644 --- a/cmd/podman/system_prune.go +++ b/cmd/podman/system_prune.go @@ -92,7 +92,7 @@ Are you sure you want to continue? [y/N] `, volumeString) rmWorkers := shared.Parallelize("rm") fmt.Println("Deleted Containers") - ok, failures, err = runtime.Prune(ctx, rmWorkers, false) + ok, failures, err = runtime.Prune(ctx, rmWorkers, false, []string{}) if err != nil { if lasterr != nil { logrus.Errorf("%q", err) |