github.com/olljanat/moby@v1.13.1/man/docker-pause.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-pause - Pause all processes within one or more containers
     6  
     7  # SYNOPSIS
     8  **docker pause**
     9  CONTAINER [CONTAINER...]
    10  
    11  # DESCRIPTION
    12  
    13  The `docker pause` command suspends all processes in the specified containers.
    14  On Linux, this uses the cgroups freezer. Traditionally, when suspending a process
    15  the `SIGSTOP` signal is used, which is observable by the process being suspended.
    16  With the cgroups freezer the process is unaware, and unable to capture,
    17  that it is being suspended, and subsequently resumed. On Windows, only Hyper-V
    18  containers can be paused.
    19  
    20  See the [cgroups freezer documentation]
    21  (https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt) for
    22  further details.
    23  
    24  # OPTIONS
    25  **--help**
    26    Print usage statement
    27  
    28  # See also
    29  **docker-unpause(1)** to unpause all processes within one or more containers.
    30  
    31  # HISTORY
    32  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>