2016-10-14 15:30:36 -07:00
|
|
|
---
|
|
|
|
title: "unpause"
|
|
|
|
description: "The unpause command description and usage"
|
|
|
|
keywords: ["cgroups, suspend, container"]
|
|
|
|
---
|
2015-06-21 13:41:38 -07:00
|
|
|
|
|
|
|
# unpause
|
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
```markdown
|
|
|
|
Usage: docker unpause CONTAINER [CONTAINER...]
|
2015-06-21 13:41:38 -07:00
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
Unpause all processes within one or more containers
|
2015-06-21 13:41:38 -07:00
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
Options:
|
|
|
|
--help Print usage
|
|
|
|
```
|
2015-10-03 17:56:41 +02:00
|
|
|
|
2016-09-08 17:31:04 -07:00
|
|
|
The `docker unpause` command un-suspends all processes in a container.
|
|
|
|
On Linux, it does this using the cgroups freezer.
|
2015-06-21 13:41:38 -07:00
|
|
|
|
|
|
|
See the
|
2016-05-27 00:28:46 +00:00
|
|
|
[cgroups freezer documentation](https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt)
|
2015-06-21 13:41:38 -07:00
|
|
|
for further details.
|