diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-23 21:29:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 21:29:25 +0100 |
commit | 3d21da3d11dc9b5944912544609c302c86e56b97 (patch) | |
tree | 339f4b51ae80e3dd592fa41edd55f2a2fae0a6ac /docs | |
parent | bbc0deb8e8b131d901c2c9932add328258ccd341 (diff) | |
parent | c81e29525b0ea84107147d92283c2b88909d1f12 (diff) | |
download | podman-3d21da3d11dc9b5944912544609c302c86e56b97.tar.gz podman-3d21da3d11dc9b5944912544609c302c86e56b97.tar.bz2 podman-3d21da3d11dc9b5944912544609c302c86e56b97.zip |
Merge pull request #8820 from baude/issue8443
add --cidfile to container kill
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-kill.1.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-kill.1.md b/docs/source/markdown/podman-kill.1.md index 5956c03da..96c01ac09 100644 --- a/docs/source/markdown/podman-kill.1.md +++ b/docs/source/markdown/podman-kill.1.md @@ -16,6 +16,10 @@ The main process inside each container specified will be sent SIGKILL, or any si Signal all running containers. This does not include paused containers. +#### **--cidfile** + +Read container ID from the specified file and remove the container. Can be specified multiple times. + #### **--latest**, **-l** Instead of providing the container name or ID, use the last created container. If you use methods other than Podman @@ -40,6 +44,10 @@ podman kill --latest podman kill --signal KILL -a +podman kill --cidfile /home/user/cidfile-1 + +podman kill --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2 + ## SEE ALSO podman(1), podman-stop(1) |