多应用+插件架构,代码干净,支持一键云编译,码云点赞13K star,4.8-4.12 预售价格198元 广告
[TOC] ## docker history 镜像的创建历史 ## 语法 ``` docker history [OPTIONS] IMAGE options -H : 以可读的格式打印镜像大小和日期,默认为true; --no-trunc : 显示完整的提交记录; -q : 仅列出提交记录ID。 ``` ## 示例 ### 查看镜像创建历史 ``` > docker history centos:7 IMAGE CREATED CREATED BY SIZE COMMENT b5b4d78bc90c 6 months ago /bin/sh -c #(nop) CMD ["/bin/bash"] 0B <missing> 6 months ago /bin/sh -c #(nop) LABEL org.label-schema.sc… 0B <missing> 6 months ago /bin/sh -c #(nop) ADD file:38e2d2a1a0cd8694b… 203MB ```