github.com/stchris/docker@v1.4.2-0.20150106053530-1510a324dbd5/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 [**--no-trunc**[=*false*]] 10 [**-q**|**--quiet**[=*false*]] 11 IMAGE 12 13 # DESCRIPTION 14 15 Show the history of when and how an image was created. 16 17 # OPTIONS 18 **--no-trunc**=*true*|*false* 19 Don't truncate output. The default is *false*. 20 21 **-q**, **--quiet**=*true*|*false* 22 Only show numeric IDs. The default is *false*. 23 24 # EXAMPLES 25 $ sudo docker history fedora 26 IMAGE CREATED CREATED BY SIZE 27 105182bb5e8b 5 days ago /bin/sh -c #(nop) ADD file:71356d2ad59aa3119d 372.7 MB 28 73bd853d2ea5 13 days ago /bin/sh -c #(nop) MAINTAINER Lokesh Mandvekar 0 B 29 511136ea3c5a 10 months ago 0 B 30 31 # HISTORY 32 April 2014, Originally compiled by William Henry (whenry at redhat dot com) 33 based on docker.com source material and internal work. 34 June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>