github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/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 <!-- This file is maintained within the docker/docker Github 8 repository at https://github.com/docker/docker/. Make all 9 pull requests against that repo. If you see this file in 10 another repository, consider it read-only there, as it will 11 periodically be overwritten by the definitive file. Pull 12 requests which include edits to this file in other repositories 13 will be rejected. 14 --> 15 16 # unpause 17 18 ```markdown 19 Usage: docker unpause CONTAINER [CONTAINER...] 20 21 Unpause all processes within one or more containers 22 23 Options: 24 --help Print usage 25 ``` 26 27 The `docker unpause` command un-suspends all processes in the specified containers. 28 On Linux, it does this using the cgroups freezer. 29 30 See the 31 [cgroups freezer documentation](https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt) 32 for further details. 33 34 ## Related information 35 36 * [pause](pause.md)