github.com/eikeon/docker@v1.5.0-rc4/docs/man/docker-history.1.md (about) 1 % DOCKER(1) Docker User Manuals 2 % Docker Community 3 % JUNE 2014 4 # NAME 5 docker-history - Show the history of an image 6 7 # SYNOPSIS 8 **docker history** 9 [**--help**] 10 [**--no-trunc**[=*false*]] 11 [**-q**|**--quiet**[=*false*]] 12 IMAGE 13 14 # DESCRIPTION 15 16 Show the history of when and how an image was created. 17 18 # OPTIONS 19 **--help** 20 Print usage statement 21 22 **--no-trunc**=*true*|*false* 23 Don't truncate output. The default is *false*. 24 25 **-q**, **--quiet**=*true*|*false* 26 Only show numeric IDs. The default is *false*. 27 28 # EXAMPLES 29 $ sudo docker history fedora 30 IMAGE CREATED CREATED BY SIZE 31 105182bb5e8b 5 days ago /bin/sh -c #(nop) ADD file:71356d2ad59aa3119d 372.7 MB 32 73bd853d2ea5 13 days ago /bin/sh -c #(nop) MAINTAINER Lokesh Mandvekar 0 B 33 511136ea3c5a 10 months ago 0 B 34 35 # HISTORY 36 April 2014, Originally compiled by William Henry (whenry at redhat dot com) 37 based on docker.com source material and internal work. 38 June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>