This commit is contained in:
fofolee
2019-04-08 23:22:26 +08:00
commit 7ca94f1141
5960 changed files with 530244 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<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>
<!-- 其他扩展 -->