blob: 74ac93cc5e7397ad9cb5b9f7229e21c720321384 (
plain)
1
2
3
4
5
6
7
8
9
|
<h1>docker unpause</h1> <p><br></p> <p>Unpause all processes within one or more containers</p> <h2 id="usage">Usage</h2> <div class="highlight"><pre class="highlight" data-language="">$ docker unpause CONTAINER [CONTAINER...]
</pre></div> <h2 id="description">Description</h2> <p name="extended-description">The <code class="language-plaintext highlighter-rouge">docker unpause</code> command un-suspends all processes in the specified containers. On Linux, it does this using the freezer cgroup.</p> <p>See the <a href="https://www.kernel.org/doc/Documentation/cgroup-v1/freezer-subsystem.txt">freezer cgroup documentation</a> for further details.</p> <p>For example uses of this command, refer to the <a href="#examples">examples section</a> below.</p> <h2 id="examples">Examples</h2> <div class="highlight"><pre class="highlight" data-language="">$ docker unpause my_container
my_container
</pre></div> <div class="_attribution">
<p class="_attribution-p">
© 2019 Docker, Inc.<br>Licensed under the Apache License, Version 2.0.<br>Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries.<br>Docker, Inc. and other parties may also have trademark rights in other terms used herein.<br>
<a href="https://docs.docker.com/engine/reference/commandline/unpause/" class="_attribution-link">https://docs.docker.com/engine/reference/commandline/unpause/</a>
</p>
</div>
|