2016-10-14 15:30:36 -07:00
|
|
|
---
|
|
|
|
title: "pause"
|
|
|
|
description: "The pause command description and usage"
|
|
|
|
keywords: ["cgroups, container, suspend, SIGSTOP"]
|
|
|
|
---
|
2015-06-21 13:41:38 -07:00
|
|
|
|
|
|
|
# pause
|
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
```markdown
|
|
|
|
Usage: docker pause CONTAINER [CONTAINER...]
|
2015-06-21 13:41:38 -07:00
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
Pause 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 pause` command suspends all processes in a container. On Linux,
|
|
|
|
this uses the cgroups freezer. Traditionally, when suspending a process the
|
|
|
|
`SIGSTOP` signal is used, which is observable by the process being suspended.
|
|
|
|
With the cgroups freezer the process is unaware, and unable to capture,
|
|
|
|
that it is being suspended, and subsequently resumed. On Windows, only Hyper-V
|
|
|
|
containers can be paused.
|
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.
|