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

16 lines
612 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 pull 命令</h1>
<p><strong>docker pull : </strong>从镜像仓库中拉取或者更新指定镜像</p>
<h3>语法</h3>
<pre>docker pull [OPTIONS] NAME[:TAG|@DIGEST]</pre>
<p>OPTIONS说明</p>
<ul>
<li><p><strong>-a :</strong>拉取所有 tagged 镜像</p><p></p></li>
<li><p><strong>--disable-content-trust :</strong>忽略镜像的校验,默认开启</p><p></p></li>
</ul>
<h3>实例</h3>
<p>从Docker Hub下载java最新版镜像。</p>
<pre>docker pull java</pre>
<p>从Docker Hub下载REPOSITORY为java的所有镜像。</p>
<pre>docker pull -a java</pre>
<!-- 其他扩展 -->