diff options
author | baude <bbaude@redhat.com> | 2017-11-29 20:01:39 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-01 13:18:32 +0000 |
commit | 1f01faf4375b2dc667b2794e4decdf360d6e32b8 (patch) | |
tree | 6736a22e1387b8443204327a4275efe4c8817e53 /docs | |
parent | 82018a4a9f5bcbda82c88b1f387be2953bc7a68a (diff) | |
download | podman-1f01faf4375b2dc667b2794e4decdf360d6e32b8.tar.gz podman-1f01faf4375b2dc667b2794e4decdf360d6e32b8.tar.bz2 podman-1f01faf4375b2dc667b2794e4decdf360d6e32b8.zip |
kpod stop -a
Stop all running containers with single switch. Useful for
maintainence of a system or integration tests.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #90
Approved by: rhatdan
Diffstat (limited to 'docs')
-rw-r--r-- | docs/kpod-stop.1.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/kpod-stop.1.md b/docs/kpod-stop.1.md index 52a358156..f45e6c078 100644 --- a/docs/kpod-stop.1.md +++ b/docs/kpod-stop.1.md @@ -19,6 +19,10 @@ is issued to the container. The default is 10 seconds. Timeout to wait before forcibly stopping the container +**--all, -a** + +Stop all running containers. This does not include paused containers. + ## EXAMPLE @@ -26,8 +30,12 @@ kpod stop mywebserver kpod stop 860a4b23 +kpod stop mywebserver 860a4b23 + kpod stop --timeout 2 860a4b23 +kpod stop -a + ## SEE ALSO kpod(1), kpod-rm(1) |