1podman-pod-start(1) General Commands Manual podman-pod-start(1)
2
3
4
6 podman-pod-start - Start one or more pods
7
8
10 podman pod start [options] pod ...
11
12
14 Start containers in one or more pods. You may use pod IDs or names as
15 input. The pod must have a container attached to be started.
16
17
19 --all, -a
20 Starts all pods
21
22
23 --latest, -l
24 Instead of providing the pod name or ID, use the last created pod.
25 Note: the last started pod can be from other users of Podman on the
26 host machine. (This option is not available with the remote Podman
27 client, including Mac and Windows (excluding WSL2) machines)
28
29
30 --pod-id-file=file
31 Read pod ID from the specified file and start the pod. Can be specified
32 multiple times.
33
34
36 Start pod with a given name
37
38 podman pod start mywebserverpod
39
40
41
42 Start pods with given IDs
43
44 podman pod start 860a4b23 5421ab4
45
46
47
48 Start the latest pod created by Podman
49
50 podman pod start --latest
51
52
53
54 Start all pods
55
56 podman pod start --all
57
58
59
60 Start pod using ID specified in a given file
61
62 podman pod start --pod-id-file /path/to/id/file
63
64
65
67 podman(1), podman-pod(1), podman-pod-stop(1)
68
69
71 July 2018, Adapted from podman start man page by Peter Hunt pehunt@red‐
72 hat.com ⟨mailto:pehunt@redhat.com⟩
73
74
75
76 podman-pod-start(1)