1podman-wait(1)() podman-wait(1)()
2
3
4
6 podman-wait - Wait on one or more containers to stop and print their
7 exit codes
8
9
11 podman wait [options] container
12
13
14 podman container wait [options] container
15
16
18 Waits on one or more containers to stop. The container can be referred
19 to by its name or ID. In the case of multiple containers, podman will
20 wait on each consecutively. After the container stops, the container's
21 return code is printed.
22
23
25 --help, -h
26
27
28 Print usage statement
29
30
31 --interval, -i=microseconds
32 Microseconds to wait before polling for completion
33
34
35 --latest, -l
36
37
38 Instead of providing the container name or ID, use the last created
39 container. If you use methods other than Podman to run containers such
40 as CRI-O, the last started container could be from either of those
41 methods.
42
43
44 The latest option is not supported on the remote client.
45
46
48 $ podman wait mywebserver
49
50 $ podman wait --latest
51
52 $ podman wait 860a4b23
53
54 $ podman wait mywebserver myftpserver
55
56
57
59 podman(1)
60
61
63 September 2017, Originally compiled by Brent Baudebbaude@redhat.com
64 ⟨mailto:bbaude@redhat.com⟩
65
66
67
68 podman-wait(1)()