mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
re-jig the info into all the places
Docker-DCO-1.1-Signed-off-by: SvenDowideit <SvenDowideit@home.org.au> (github: SvenDowideit)
This commit is contained in:
parent
3957d72f9c
commit
58955a30ff
3 changed files with 38 additions and 7 deletions
|
@ -8,6 +8,18 @@ docker-pause - Pause all processes within a container
|
||||||
**docker pause**
|
**docker pause**
|
||||||
CONTAINER
|
CONTAINER
|
||||||
|
|
||||||
|
# DESCRIPTION
|
||||||
|
|
||||||
|
The `docker pause` command uses the cgroups freezer to suspend all processes in
|
||||||
|
a container. 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.
|
||||||
|
|
||||||
|
See the [cgroups freezer documentation]
|
||||||
|
(https://www.kernel.org/doc/Documentation/cgroups/freezer-subsystem.txt) for
|
||||||
|
further details.
|
||||||
|
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
There are no available options.
|
There are no available options.
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,15 @@ docker-unpause - Unpause all processes within a container
|
||||||
**docker unpause**
|
**docker unpause**
|
||||||
CONTAINER
|
CONTAINER
|
||||||
|
|
||||||
|
# DESCRIPTION
|
||||||
|
|
||||||
|
The `docker unpause` command uses the cgroups freezer to un-suspend all
|
||||||
|
processes in a container.
|
||||||
|
|
||||||
|
See the [cgroups freezer documentation]
|
||||||
|
(https://www.kernel.org/doc/Documentation/cgroups/freezer-subsystem.txt) for
|
||||||
|
further details.
|
||||||
|
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
There are no available options.
|
There are no available options.
|
||||||
|
|
||||||
|
|
|
@ -764,14 +764,17 @@ log entry.
|
||||||
|
|
||||||
Usage: docker pause CONTAINER
|
Usage: docker pause CONTAINER
|
||||||
|
|
||||||
Pause uses the cgroups freezer to suspend all processes in a container.
|
Pause all processes within a container
|
||||||
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.
|
|
||||||
|
|
||||||
For for information on the cgroups freezer see:
|
The `docker pause` command uses the cgroups freezer to suspend all processes in
|
||||||
https://www.kernel.org/doc/Documentation/cgroups/freezer-subsystem.txt
|
a container. 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.
|
||||||
|
|
||||||
|
See the [cgroups freezer documentation]
|
||||||
|
(https://www.kernel.org/doc/Documentation/cgroups/freezer-subsystem.txt) for
|
||||||
|
further details.
|
||||||
|
|
||||||
## ps
|
## ps
|
||||||
|
|
||||||
|
@ -1282,6 +1285,13 @@ them to [*Share Images via Repositories*](
|
||||||
|
|
||||||
Resumes a paused container.
|
Resumes a paused container.
|
||||||
|
|
||||||
|
The `docker unpause` command uses the cgroups freezer to un-suspend all
|
||||||
|
processes in a container.
|
||||||
|
|
||||||
|
See the [cgroups freezer documentation]
|
||||||
|
(https://www.kernel.org/doc/Documentation/cgroups/freezer-subsystem.txt) for
|
||||||
|
further details.
|
||||||
|
|
||||||
## version
|
## version
|
||||||
|
|
||||||
Usage: docker version
|
Usage: docker version
|
||||||
|
|
Loading…
Add table
Reference in a new issue