1podman-kill(1) General Commands Manual podman-kill(1)
2
3
4
6 podman-kill - Kills one or more containers with a signal
7
8
10 podman kill [options] [container ...]
11
12
14 The main process inside each container specified will be sent SIGKILL,
15 or any signal specified with option --signal.
16
17
19 --all, -a
20
21
22 Signal all running containers. This does not include paused
23 containers.
24
25
26 --latest, -l
27
28
29 Instead of providing the container name or ID, use the last created
30 container. If you use methods other than Podman to run containers such
31 as CRI-O, the last started container could be from either of those
32 methods.
33
34
35 The latest option is not supported on the remote client.
36
37
38 --signal, s
39
40
41 Signal to send to the container. For more information on Linux signals,
42 refer to man signal(7).
43
44
46 podman kill mywebserver
47
48
49 podman kill 860a4b23
50
51
52 podman kill --signal TERM 860a4b23
53
54
55 podman kill --latest
56
57
58 podman kill --signal KILL -a
59
60
62 podman(1), podman-stop(1)
63
64
66 September 2017, Originally compiled by Brent Baude ⟨bbaude@redhat.com⟩
67
68
69
70 podman-kill(1)