Docker命令行参考(7) – docker history显示一个镜像的历史

  1. Usage:  docker history [OPTIONS] IMAGE
  2.  
  3. Show the history of an image
  4.  
  5. Options:
  6.       --help       Print usage
  7.   -H, --human      Print sizes and dates in human readable format (default true)
  8.       --no-trunc   Don't truncate output
  9.   -q, --quiet      Only show numeric IDs

显示docker:latest镜像是如何构建的:

  1. $ docker history docker
  2. IMAGE               CREATED             CREATED BY                                      SIZE                COMMENT
  3. 3e23a5875458        8 days ago          /bin/sh -c #(nop) ENV LC_ALL=C.UTF-8            0 B
  4. 8578938dd170        8 days ago          /bin/sh -c dpkg-reconfigure locales &&    loc   1.245 MB
  5. be51b77efb42        8 days ago          /bin/sh -c apt-get update && apt-get install    338.3 MB
  6. 4b137612be55        6 weeks ago         /bin/sh -c #(nop) ADD jessie.tar.xz in /        121 MB
  7. 750d58736b4b        6 weeks ago         /bin/sh -c #(nop) MAINTAINER Tianon Gravi <ad   0 B
  8. 511136ea3c5a        9 months ago                                                        0 B                 Imported from -

显示Apache是如何添加到Fedora base镜像的:

  1. $ docker history docker:scm
  2. IMAGE               CREATED             CREATED BY                                      SIZE                COMMENT
  3. 2ac9d1098bf1        3 months ago        /bin/bash                                       241.4 MB            Added Apache to Fedora base image
  4. 88b42ffd1f7c        5 months ago        /bin/sh -c #(nop) ADD file:1fd8d7f9f6557cafc7   373.7 MB
  5. c69cab00d6ef        5 months ago        /bin/sh -c #(nop) MAINTAINER Lokesh Mandvekar   0 B
  6. 511136ea3c5a        19 months ago                                                       0 B                 Imported from -
标签:Docker 发布于:2019-11-19 15:24:55