uTools-Manuals/docs/docker/docker cp.html
2019-04-21 11:50:48 +08:00

18 lines
798 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h1>Docker cp 命令</h1>
<p><strong>docker cp :</strong>用于容器与主机之间的数据拷贝。</p>
<h3>语法</h3>
<pre>docker cp [OPTIONS] CONTAINER:SRC_PATH DEST_PATH|-</pre>
<pre>docker cp [OPTIONS] SRC_PATH|- CONTAINER:DEST_PATH</pre>
<p>OPTIONS说明</p>
<ul>
<li><p><strong>-L :</strong>保持源目标中的链接</p></li>
</ul>
<h3>实例</h3>
<p>将主机/www/runoob目录拷贝到容器96f7f14e99ab的/www目录下。</p>
<pre>docker cp /www/runoob 96f7f14e99ab:/www/</pre>
<p>将主机/www/runoob目录拷贝到容器96f7f14e99ab中目录重命名为www。</p>
<pre>docker cp /www/runoob 96f7f14e99ab:/www</pre>
<p>将容器96f7f14e99ab的/www目录拷贝到主机的/tmp目录中。</p>
<pre>docker cp 96f7f14e99ab:/www /tmp/</pre>
<!-- 其他扩展 -->