docker语法高亮

This commit is contained in:
fofolee
2019-05-07 10:37:34 +08:00
parent 2bf87e1e25
commit 6ae6134047
32 changed files with 117 additions and 117 deletions

View File

@@ -1,7 +1,7 @@
<h1>Docker history 命令</h1>
<p><strong>docker history : </strong>查看指定镜像的创建历史。</p>
<h3>语法</h3>
<pre>docker history [OPTIONS] IMAGE</pre>
<pre><code class="language-Docker">docker history [OPTIONS] IMAGE</code></pre>
<p>OPTIONS说明</p>
<ul>
<li><p><strong>-H :</strong>以可读的格式打印镜像大小和日期默认为true</p><p></p></li>
@@ -10,7 +10,7 @@
</ul>
<h3>实例</h3>
<p>查看本地镜像runoob/ubuntu:v3的创建历史。</p>
<pre>
<pre><code class="language-Docker">
root@runoob:~# docker history runoob/ubuntu:v3
@@ -23,4 +23,4 @@ IMAGE CREATED CREATED BY
&lt;missing&gt; 3 months ago /bin/sh -c #(nop) ADD file:43cb048516c6b80f22 136.3 MB
</pre>
</code></pre>