mirror of https://github.com/docker/docs.git
33 lines
1.8 KiB
YAML
33 lines
1.8 KiB
YAML
command: docker image history
|
|
short: Show the history of an image
|
|
long: "Show the history of when and how an image was created.\n\n# EXAMPLES\n $
|
|
docker history fedora\n IMAGE CREATED CREATED BY SIZE
|
|
\ COMMENT\n 105182bb5e8b 5 days ago /bin/sh -c #(nop) ADD
|
|
file:71356d2ad59aa3119d 372.7 MB\n 73bd853d2ea5 13 days ago /bin/sh
|
|
-c #(nop) MAINTAINER Lokesh Mandvekar 0 B\n 511136ea3c5a 10 months ago 0
|
|
B Imported from -\n\n## Display comments in the image history\nThe
|
|
`docker commit` command has a **-m** flag for adding comments to the image. These
|
|
comments will be displayed in the image history.\n\n $ sudo docker history docker:scm\n
|
|
\ IMAGE CREATED CREATED BY SIZE
|
|
\ COMMENT\n 2ac9d1098bf1 3 months ago /bin/bash 241.4
|
|
MB Added Apache to Fedora base image\n 88b42ffd1f7c 5 months
|
|
ago /bin/sh -c #(nop) ADD file:1fd8d7f9f6557cafc7 373.7 MB \n
|
|
\ c69cab00d6ef 5 months ago /bin/sh -c #(nop) MAINTAINER Lokesh
|
|
Mandvekar 0 B \n 511136ea3c5a 19 months ago 0
|
|
B Imported from -\n"
|
|
usage: docker image history [OPTIONS] IMAGE
|
|
pname: docker image
|
|
plink: docker_image.yaml
|
|
options:
|
|
- option: human
|
|
shorthand: H
|
|
default_value: "true"
|
|
description: Print sizes and dates in human readable format
|
|
- option: no-trunc
|
|
default_value: "false"
|
|
description: Don't truncate output
|
|
- option: quiet
|
|
shorthand: q
|
|
default_value: "false"
|
|
description: Only show numeric IDs
|