github.com/AliyunContainerService/cli@v0.0.0-20181009023821-814ced4b30d0/docs/reference/commandline/unpause.md (about)

     1  ---
     2  title: "unpause"
     3  description: "The unpause command description and usage"
     4  keywords: "cgroups, suspend, container"
     5  ---
     6  
     7  <!-- This file is maintained within the docker/cli GitHub
     8       repository at https://github.com/docker/cli/. Make all
     9       pull requests against that repo. If you see this file in
    10       another repository, consider it read-only there, as it will
    11       periodically be overwritten by the definitive file. Pull
    12       requests which include edits to this file in other repositories
    13       will be rejected.
    14  -->
    15  
    16  # unpause
    17  
    18  ```markdown
    19  Usage:  docker unpause CONTAINER [CONTAINER...]
    20  
    21  Unpause all processes within one or more containers
    22  
    23  Options:
    24        --help   Print usage
    25  ```
    26  
    27  ## Description
    28  
    29  The `docker unpause` command un-suspends all processes in the specified containers.
    30  On Linux, it does this using the cgroups freezer.
    31  
    32  See the
    33  [cgroups freezer documentation](https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt)
    34  for further details.
    35  
    36  ## Examples
    37  
    38  ```bash
    39  $ docker unpause my_container
    40  my_container
    41  ```
    42  
    43  ## Related commands
    44  
    45  * [pause](pause.md)