|
@@ -2,7 +2,7 @@
|
|
|
% Docker Community
|
|
|
% JUNE 2014
|
|
|
# NAME
|
|
|
-docker-pause - Pause all processes within a container
|
|
|
+docker-pause - Pause all processes within one or more containers
|
|
|
|
|
|
# SYNOPSIS
|
|
|
**docker pause**
|
|
@@ -10,9 +10,9 @@ CONTAINER [CONTAINER...]
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
-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.
|
|
|
+The `docker pause` command suspends all processes in the specified containers.
|
|
|
+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.
|
|
@@ -22,10 +22,11 @@ See the [cgroups freezer documentation]
|
|
|
further details.
|
|
|
|
|
|
# OPTIONS
|
|
|
-There are no available options.
|
|
|
+**--help**
|
|
|
+ Print usage statement
|
|
|
|
|
|
# See also
|
|
|
-**docker-unpause(1)** to unpause all processes within a container.
|
|
|
+**docker-unpause(1)** to unpause all processes within one or more containers.
|
|
|
|
|
|
# HISTORY
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|