diff options
author | baude <bbaude@redhat.com> | 2020-12-23 11:02:52 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-12-23 12:01:46 -0600 |
commit | c81e29525b0ea84107147d92283c2b88909d1f12 (patch) | |
tree | e88e9e8d36811858ecfa026b9ed280f50ee83bae /docs/source/markdown | |
parent | 54b82a175f16f27849e6791f65bf73eccae4701a (diff) | |
download | podman-c81e29525b0ea84107147d92283c2b88909d1f12.tar.gz podman-c81e29525b0ea84107147d92283c2b88909d1f12.tar.bz2 podman-c81e29525b0ea84107147d92283c2b88909d1f12.zip |
add --cidfile to container kill
Add the ability to read container ids from one or more files for the
kill command.
Fixes: #8443
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'docs/source/markdown')
-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) |