github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/cli/docs/reference/commandline/unpause.md (about) 1 --- 2 title: "unpause" 3 description: "The unpause command description and usage" 4 keywords: "cgroups, suspend, container" 5 --- 6 7 # unpause 8 9 ```markdown 10 Usage: docker unpause CONTAINER [CONTAINER...] 11 12 Unpause all processes within one or more containers 13 14 Options: 15 --help Print usage 16 ``` 17 18 ## Description 19 20 The `docker unpause` command un-suspends all processes in the specified containers. 21 On Linux, it does this using the freezer cgroup. 22 23 See the 24 [freezer cgroup documentation](https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt) 25 for further details. 26 27 ## Examples 28 29 ```bash 30 $ docker unpause my_container 31 my_container 32 ``` 33 34 ## Related commands 35 36 * [pause](pause.md)