summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2017-11-24 09:21:09 -0600
committerAtomic Bot <atomic-devel@projectatomic.io>2017-11-27 16:46:06 +0000
commitdd88ce005f244c761e209347c63d4e65c9df9e26 (patch)
tree5c64da3091f8dfccb29a2984f040fbb5daef3fe9 /docs
parent61e0ab4f47b63039152a5576a2f9a1741d45b654 (diff)
downloadpodman-dd88ce005f244c761e209347c63d4e65c9df9e26.tar.gz
podman-dd88ce005f244c761e209347c63d4e65c9df9e26.tar.bz2
podman-dd88ce005f244c761e209347c63d4e65c9df9e26.zip
kpod_rm: Add option for --all
Remove all containers with -a, --all. Enable kpod rm tests which were all set to skip. Add two tests for -a Signed-off-by: baude <bbaude@redhat.com> Closes: #74 Approved by: rhatdan
Diffstat (limited to 'docs')
-rw-r--r--docs/kpod-rm.1.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/kpod-rm.1.md b/docs/kpod-rm.1.md
index 4e2c490a6..77753f1fe 100644
--- a/docs/kpod-rm.1.md
+++ b/docs/kpod-rm.1.md
@@ -9,7 +9,7 @@ kpod rm - Remove one or more containers
**kpod** **rm** [*options* [...]] container
## DESCRIPTION
-Kpod rm will remove one or more containers from the host. The container name or ID can be used. This does not remove images. Running containers will not be removed without the -f option
+kpod rm will remove one or more containers from the host. The container name or ID can be used. This does not remove images. Running containers will not be removed without the -f option
## OPTIONS
@@ -17,13 +17,20 @@ Kpod rm will remove one or more containers from the host. The container name or
Force the removal of a running container
+**--all, a**
+
+Remove all containers. Can be used in conjunction with -f as well.
## EXAMPLE
kpod rm mywebserver
+kpod rm mywebserver myflaskserver 860a4b23
+
kpod rm -f 860a4b23
+kpod rm -f -a
+
## SEE ALSO
kpod(1), kpod-rmi(1)