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
40 podman pod kill mywebserver
41
42
43
44 Kill pod with a given ID
45
46
47 podman pod kill 860a4b23
48
49
50
51 Terminate pod by sending TERM signal
52
53
54 podman pod kill --signal TERM 860a4b23
55
56
57
58 Kill the latest pod created by Podman
59
60
61 podman pod kill --latest
62
63
64
65 Terminate all pods by sending KILL signal
66
67
68 podman pod kill --all
69
70
71
73 podman(1), podman-pod(1), podman-pod-stop(1)
74
75
77 July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
78 ⟨mailto:pehunt@redhat.com⟩
79
80
81
82 podman-pod-kill(1)