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. You may use con‐
18 tainer IDs or names 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 (accepts │
45 │ │ regex) │
46 ├─────────┼───────────────────────────────┤
47 │name │ [Name] Container's name (ac‐ │
48 │ │ cepts regex) │
49 ├─────────┼───────────────────────────────┤
50 │label │ [Key] or [Key=Value] Label │
51 │ │ assigned to a container │
52 ├─────────┼───────────────────────────────┤
53 │exited │ [Int] Container's exit code │
54 ├─────────┼───────────────────────────────┤
55 │status │ [Status] Container's status: │
56 │ │ 'created', 'exited', │
57 │ │ 'paused', 'running', 'un‐ │
58 │ │ known' │
59 ├─────────┼───────────────────────────────┤
60 │ancestor │ [ImageName] Image or descen‐ │
61 │ │ dant used to create container │
62 ├─────────┼───────────────────────────────┤
63 │before │ [ID] or [Name] Containers │
64 │ │ created before this container │
65 ├─────────┼───────────────────────────────┤
66 │since │ [ID] or [Name] Containers │
67 │ │ created since this container │
68 ├─────────┼───────────────────────────────┤
69 │volume │ [VolumeName] or [Mountpoint‐ │
70 │ │ Destination] Volume mounted │
71 │ │ in container │
72 ├─────────┼───────────────────────────────┤
73 │health │ [Status] healthy or unhealthy │
74 ├─────────┼───────────────────────────────┤
75 │pod │ [Pod] name or full or partial │
76 │ │ ID of pod │
77 ├─────────┼───────────────────────────────┤
78 │network │ [Network] name or full ID of │
79 │ │ network │
80 └─────────┴───────────────────────────────┘
81
82 --latest, -l
83 Instead of providing the container name or ID, use the last created
84 container. If you use methods other than Podman to run containers such
85 as CRI-O, the last started container could be from either of those
86 methods. (This option is not available with the remote Podman client,
87 including Mac and Windows (excluding WSL2) machines)
88
89
91 Unpause container called 'mywebserver'
92
93
94 podman unpause mywebserver
95
96
97
98 Unpause container by a partial container ID.
99
100
101 podman unpause 860a4b23
102
103
104
105 Unpause all paused containers.
106
107
108 podman unpause --all
109
110
111
112 Unpause container using ID specified in a given files.
113
114
115 podman unpause --cidfile /home/user/cidfile-1
116 podman unpause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
117
118
119
120 Unpause the latest container created by Podman.
121
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)