...
1# unpause
2
3<!---MARKER_GEN_START-->
4Unpause all processes within one or more containers
5
6### Aliases
7
8`docker container unpause`, `docker unpause`
9
10
11<!---MARKER_GEN_END-->
12
13## Description
14
15The `docker unpause` command un-suspends all processes in the specified containers.
16On Linux, it does this using the freezer cgroup.
17
18See the
19[freezer cgroup documentation](https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt)
20for further details.
21
22## Examples
23
24```console
25$ docker unpause my_container
26my_container
27```
28
29## Related commands
30
31* [pause](pause.md)
View as plain text