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
83 --latest, -l
84 Instead of providing the container name or ID, use the last created
85 container. Note: the last started container can be from other users of
86 Podman on the host machine. (This option is not available with the re‐
87 mote Podman client, including Mac and Windows (excluding WSL2) ma‐
88 chines)
89
90
92 Unpause container called 'mywebserver'
93
94
95 podman unpause mywebserver
96
97
98
99 Unpause container by a partial container ID.
100
101
102 podman unpause 860a4b23
103
104
105
106 Unpause all paused containers.
107
108
109 podman unpause --all
110
111
112
113 Unpause container using ID specified in a given files.
114
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
124 podman unpause --latest
125
126
127
129 podman(1), podman-pause(1)
130
131
133 September 2017, Originally compiled by Dan Walsh dwalsh@redhat.com
134 ⟨mailto:dwalsh@redhat.com⟩
135
136
137
138 podman-unpause(1)