1podman-pod-kill(1) General Commands Manual podman-pod-kill(1)
2
3
4
6 podman-pod-kill - Kill the main process of each container in one or
7 more pods
8
9
11 podman pod kill [options] pod ...
12
13
15 The main process of each container inside the pods specified is sent
16 SIGKILL, or any signal specified with option --signal.
17
18
20 --all, -a
21 Sends signal to all containers associated with a pod.
22
23
24 --latest, -l
25 Instead of providing the pod name or ID, use the last created pod.
26 Note: the last started pod can be from other users of Podman on the
27 host machine. (This option is not available with the remote Podman
28 client, including Mac and Windows (excluding WSL2) machines)
29
30
31 --signal, -s=signal
32 Signal to send to the containers in the pod. For more information on
33 Linux signals, refer to signal(7). The default is SIGKILL.
34
35
37 Kill pod with a given name
38
39 podman pod kill mywebserver
40
41
42
43 Kill pod with a given ID
44
45 podman pod kill 860a4b23
46
47
48
49 Terminate pod by sending TERM signal
50
51 podman pod kill --signal TERM 860a4b23
52
53
54
55 Kill the latest pod created by Podman
56
57 podman pod kill --latest
58
59
60
61 Terminate all pods by sending KILL signal
62
63 podman pod kill --all
64
65
66
68 podman(1), podman-pod(1), podman-pod-stop(1)
69
70
72 July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
73 ⟨mailto:pehunt@redhat.com⟩
74
75
76
77 podman-pod-kill(1)