docker-info.1 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. .\" Process this file with
  2. .\" nroff -man -Tascii docker-info.1
  3. .\"
  4. .TH "DOCKER" "1" "APRIL 2014" "0.1" "Docker"
  5. .SH NAME
  6. docker-info \- Display system wide information
  7. .SH SYNOPSIS
  8. .B docker info
  9. .SH DESCRIPTION
  10. This command displays system wide information regarding the Docker installation. Information displayed includes the number of containers and images, pool name, data file, metadata file, data space used, total data space, metadata space used, total metadata space, execution driver, and the kernel version.
  11. .sp
  12. 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.
  13. .SH "OPTIONS"
  14. There are no available options.
  15. .sp
  16. .SH EXAMPLES
  17. .sp
  18. .B Display Docker system information
  19. .TP
  20. Here is a sample output:
  21. .sp
  22. .RS
  23. # docker info
  24. Containers: 18
  25. Images: 95
  26. Storage Driver: devicemapper
  27. Pool Name: docker-8:1-170408448-pool
  28. Data file: /var/lib/docker/devicemapper/devicemapper/data
  29. Metadata file: /var/lib/docker/devicemapper/devicemapper/metadata
  30. Data Space Used: 9946.3 Mb
  31. Data Space Total: 102400.0 Mb
  32. Metadata Space Used: 9.9 Mb
  33. Metadata Space Total: 2048.0 Mb
  34. Execution Driver: native-0.1
  35. Kernel Version: 3.10.0-116.el7.x86_64
  36. .RE
  37. .sp
  38. .SH HISTORY
  39. April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on dockier.io source material and internal work.