1podman-unpause(1) General Commands Manual podman-unpause(1)
2
3
4
6 podman-unpause - Unpause one or more containers
7
8
10 podman unpause [options]|[container ...]
11
12
13 podman container unpause [options]|[container ...]
14
15
17 Unpauses the processes in one or more containers. Container IDs or
18 names can be used as input.
19
20
22 --all, -a
23 Unpause all paused containers.
24
25
26 --cidfile=file
27 Read container ID from the specified file and unpause the container.
28 Can be specified multiple times.
29
30
31 --filter, -f=filter
32 Filter what containers unpause. Multiple filters can be given with
33 multiple uses of the --filter flag. Filters with the same key work in‐
34 clusive with the only exception being label which is exclusive. Filters
35 with different keys always work exclusive.
36
37
38 Valid filters are listed below:
39
40
41 ┌─────────┬───────────────────────────────┐
42 │Filter │ Description │
43 ├─────────┼───────────────────────────────┤
44 │id │ [ID] Container's ID (CID pre‐ │
45 │ │ fix match by default; accepts │
46 │ │ regex) │
47 ├─────────┼───────────────────────────────┤
48 │name │ [Name] Container's name (ac‐ │
49 │ │ cepts regex) │
50 ├─────────┼───────────────────────────────┤
51 │label │ [Key] or [Key=Value] Label │
52 │ │ assigned to a container │
53 ├─────────┼───────────────────────────────┤
54 │exited │ [Int] Container's exit code │
55 ├─────────┼───────────────────────────────┤
56 │status │ [Status] Container's status: │
57 │ │ 'created', 'exited', │
58 │ │ 'paused', 'running', 'un‐ │
59 │ │ known' │
60 ├─────────┼───────────────────────────────┤
61 │ancestor │ [ImageName] Image or descen‐ │
62 │ │ dant used to create container │
63 ├─────────┼───────────────────────────────┤
64 │before │ [ID] or [Name] Containers │
65 │ │ created before this container │
66 ├─────────┼───────────────────────────────┤
67 │since │ [ID] or [Name] Containers │
68 │ │ created since this container │
69 ├─────────┼───────────────────────────────┤
70 │volume │ [VolumeName] or [Mountpoint‐ │
71 │ │ Destination] Volume mounted │
72 │ │ in container │
73 ├─────────┼───────────────────────────────┤
74 │health │ [Status] healthy or unhealthy │
75 ├─────────┼───────────────────────────────┤
76 │pod │ [Pod] name or full or partial │
77 │ │ ID of pod │
78 ├─────────┼───────────────────────────────┤
79 │network │ [Network] name or full ID of │
80 │ │ network │
81 ├─────────┼───────────────────────────────┤
82 │until │ [DateTime] Containers created │
83 │ │ before the given duration or │
84 │ │ time. │
85 └─────────┴───────────────────────────────┘
86
87 --latest, -l
88 Instead of providing the container name or ID, use the last created
89 container. Note: the last started container can be from other users of
90 Podman on the host machine. (This option is not available with the re‐
91 mote Podman client, including Mac and Windows (excluding WSL2) ma‐
92 chines)
93
94
96 Unpause container called 'mywebserver'
97
98 podman unpause mywebserver
99
100
101
102 Unpause container by a partial container ID.
103
104 podman unpause 860a4b23
105
106
107
108 Unpause all paused containers.
109
110 podman unpause --all
111
112
113
114 Unpause container using ID specified in a given files.
115
116 podman unpause --cidfile /home/user/cidfile-1
117 podman unpause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
118
119
120
121 Unpause the latest container created by Podman.
122
123 podman unpause --latest
124
125
126
128 podman(1), podman-pause(1)
129
130
132 September 2017, Originally compiled by Dan Walsh dwalsh@redhat.com
133 ⟨mailto:dwalsh@redhat.com⟩
134
135
136
137 podman-unpause(1)