1podman-pod-rm(1)() podman-pod-rm(1)()
2
3
4
6 podman-pod-rm - Remove one or more stopped pods and containers
7
8
10 podman pod rm [options] pod
11
12
14 podman pod rm will remove one or more stopped pods and their containers
15 from the host. The pod name or ID can be used. The -f option stops all
16 containers and then removes them before removing the pod.
17
18
20 --all, -a
21
22
23 Remove all pods. Can be used in conjunction with -f as well.
24
25
26 --ignore, -i
27
28
29 Ignore errors when specified pods are not in the container store. A
30 user might have decided to manually remove a pod which would lead to a
31 failure during the ExecStop directive of a systemd service referencing
32 that pod.
33
34
35 --latest, -l
36
37
38 Instead of providing the pod name or ID, remove the last created pod.
39
40
41 The latest option is not supported on the remote client.
42
43
44 --force, -f
45
46
47 Stop running containers and delete all stopped containers before
48 removal of pod.
49
50
52 podman pod rm mywebserverpod
53
54
55 podman pod rm mywebserverpod myflaskserverpod 860a4b23
56
57
58 podman pod rm -f 860a4b23
59
60
61 podman pod rm -f -a
62
63
64 podman pod rm -fa
65
66
68 podman-pod(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-rm(1)()