mirror of
https://github.com/containers/podman.git
synced 2026-07-12 08:15:23 -04:00
59 lines
1.2 KiB
Markdown
59 lines
1.2 KiB
Markdown
% podman-unpause 1
|
|
|
|
## NAME
|
|
podman\-unpause - Unpause one or more containers
|
|
|
|
## SYNOPSIS
|
|
**podman unpause** [*options*]|[*container* ...]
|
|
|
|
**podman container unpause** [*options*]|[*container* ...]
|
|
|
|
## DESCRIPTION
|
|
Unpauses the processes in one or more containers. Container IDs or names can be used as input.
|
|
|
|
## OPTIONS
|
|
|
|
#### **--all**, **-a**
|
|
|
|
Unpause all paused containers.
|
|
|
|
@@option cidfile.read
|
|
|
|
@@option filter.container
|
|
|
|
@@option latest
|
|
|
|
## EXAMPLE
|
|
|
|
Unpause specified container:
|
|
```
|
|
podman unpause mywebserver
|
|
```
|
|
|
|
Unpause container by a partial container ID:
|
|
```
|
|
podman unpause 860a4b23
|
|
```
|
|
|
|
Unpause all **paused** containers:
|
|
```
|
|
podman unpause --all
|
|
```
|
|
|
|
Unpause container using ID specified in given files:
|
|
```
|
|
podman unpause --cidfile /home/user/cidfile-1
|
|
podman unpause --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
|
|
```
|
|
|
|
Unpause the latest container. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines):
|
|
```
|
|
podman unpause --latest
|
|
```
|
|
|
|
## SEE ALSO
|
|
**[podman(1)](podman.1.md)**, **[podman-pause(1)](podman-pause.1.md)**
|
|
|
|
## HISTORY
|
|
September 2017, Originally compiled by Dan Walsh <dwalsh@redhat.com>
|