2014-04-16 14:07:55 -04:00
|
|
|
% DOCKER(1) Docker User Manuals
|
2014-06-30 22:58:04 -04:00
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
2014-04-16 14:07:55 -04:00
|
|
|
# NAME
|
2014-06-30 22:58:04 -04:00
|
|
|
docker-info - Display system-wide information
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
**docker info**
|
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
# DESCRIPTION
|
|
|
|
This command displays system wide information regarding the Docker installation.
|
|
|
|
Information displayed includes the number of containers and images, pool name,
|
2014-04-17 11:36:58 -04:00
|
|
|
data file, metadata file, data space used, total data space, metadata space used
|
|
|
|
, total metadata space, execution driver, and the kernel version.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
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
|
2014-08-27 14:59:13 -04:00
|
|
|
There are no available options.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# EXAMPLES
|
|
|
|
|
|
|
|
## Display Docker system information
|
|
|
|
|
|
|
|
Here is a sample output:
|
|
|
|
|
|
|
|
# docker info
|
2014-07-24 11:42:38 -04:00
|
|
|
Containers: 14
|
|
|
|
Images: 52
|
|
|
|
Storage Driver: aufs
|
|
|
|
Root Dir: /var/lib/docker/aufs
|
|
|
|
Dirs: 80
|
|
|
|
Execution Driver: native-0.2
|
|
|
|
Kernel Version: 3.13.0-24-generic
|
|
|
|
Operating System: Ubuntu 14.04 LTS
|
2014-10-24 18:48:23 -04:00
|
|
|
CPUs: 1
|
|
|
|
Total Memory: 2 GiB
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# HISTORY
|
2014-04-17 11:36:58 -04:00
|
|
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
2014-07-01 20:30:25 -04:00
|
|
|
based on docker.com source material and internal work.
|
2014-06-30 22:58:04 -04:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|