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