github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/docs/source/markdown/podman-unpause.1.md (about) 1 % podman-unpause(1) 2 3 ## NAME 4 podman\-unpause - Unpause one or more containers 5 6 ## SYNOPSIS 7 **podman unpause** [*options*]|[*container* ...] 8 9 **podman container unpause** [*options*]|[*container* ...] 10 11 ## DESCRIPTION 12 Unpauses the processes in one or more containers. You may use container IDs or names as input. 13 14 ## OPTIONS 15 16 #### **--all**, **-a** 17 18 Unpause all paused containers. 19 20 ## EXAMPLE 21 22 Unpause a container called 'mywebserver' 23 ``` 24 podman unpause mywebserver 25 ``` 26 27 Unpause a container by a partial container ID. 28 29 ``` 30 podman unpause 860a4b23 31 ``` 32 33 Unpause all **paused** containers. 34 ``` 35 podman unpause -a 36 ``` 37 38 ## SEE ALSO 39 podman(1), podman-pause(1) 40 41 ## HISTORY 42 September 2017, Originally compiled by Dan Walsh <dwalsh@redhat.com>