man/docker-info.1.md
0a0dd116
 % DOCKER(1) Docker User Manuals
b07f1938
 % Docker Community
 % JUNE 2014
0a0dd116
 # NAME
b07f1938
 docker-info - Display system-wide information
0a0dd116
 
 # SYNOPSIS
 **docker info**
a2b529ea
 [**--help**]
0a0dd116
 
b07f1938
 
0a0dd116
 # DESCRIPTION
 This command displays system wide information regarding the Docker installation.
 Information displayed includes the number of containers and images, pool name,
1b2b783b
 data file, metadata file, data space used, total data space, metadata space used
 , total metadata space, execution driver, and the kernel version.
0a0dd116
 
 The data file is where the images are stored and the metadata file is where the
 meta data regarding those images are stored. When run for the first time Docker
 allocates a certain amount of data space and meta data space from the space
 available on the volume where `/var/lib/docker` is mounted.
 
 # OPTIONS
a2b529ea
 **--help**
   Print usage statement
0a0dd116
 
 # EXAMPLES
 
 ## Display Docker system information
 
 Here is a sample output:
 
     # docker info
b0fb0055
     Containers: 14
     Images: 52
     Storage Driver: aufs
      Root Dir: /var/lib/docker/aufs
      Dirs: 80
     Execution Driver: native-0.2
f5a401d3
     Logging Driver: json-file
b0fb0055
     Kernel Version: 3.13.0-24-generic
     Operating System: Ubuntu 14.04 LTS
61f8001c
     CPUs: 1
     Total Memory: 2 GiB
0a0dd116
 
 # HISTORY
1b2b783b
 April 2014, Originally compiled by William Henry (whenry at redhat dot com)
fa29b1f0
 based on docker.com source material and internal work.
b07f1938
 June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>