1podman-pod-rm(1)() podman-pod-rm(1)()
2
3
4
6 podman-pod-rm - Remove one or more pods
7
8
10 podman pod rm [options] pod
11
12
14 podman pod rm will remove one or more pods from the host. The pod name
15 or ID can be used. The -f option stops all containers and then removes
16 them before removing the pod. Without the -f option, a pod cannot be
17 removed if it has associated containers.
18
19
21 --all, -a
22
23
24 Remove all pods. Can be used in conjunction with -f as well.
25
26
27 --latest, -l
28
29
30 Instead of providing the pod name or ID, remove the last created pod.
31
32
33 The latest option is not supported on the remote client.
34
35
36 --force, -f
37
38
39 Stop running containers and delete all stopped containers before
40 removal of pod.
41
42
44 podman pod rm mywebserverpod
45
46
47 podman pod rm mywebserverpod myflaskserverpod 860a4b23
48
49
50 podman pod rm -f 860a4b23
51
52
53 podman pod rm -f -a
54
55
56 podman pod rm -fa
57
58
60 podman-pod(1)
61
62
64 July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
65 ⟨mailto:pehunt@redhat.com⟩
66
67
68
69 podman-pod-rm(1)()