docker info

Command Name: 

docker info

Description:

  1. This command displays system wide information of the docker server which is running on your system.

    Few imports details which command is providing as follow:

    1. Containers count and its stats
    2. Images count
    3. Server Version which is installed
    4. Storage Driver
    5. Swarm active/inactive details
    6. Kernal Version
    7. Operating System
    8. CPUS
    9. Total Memory
    10. Docker Root directory
    11. Product License

Syntax:

easywhatis$ docker info --help

Usage: docker info [OPTIONS]

Display system-wide information

Options:
  -f, --format string   Format the output using the given Go template
easywhatis$

Example:

easywhatis$ docker info
Client:
Debug Mode: false

Server:
Containers: 1
  Running: 1
  Paused: 0
  Stopped: 0
Images: 3
Server Version: 19.03.8
Storage Driver: overlay2
  Backing Filesystem: <unknown>
  Supports d_type: true
  Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 7ad184331fa3e55e52b890ea95e65ba581ae3429
runc version: dc9208a3303feef5b3839f4323d9beb36df0a9dd
init version: fec3683
Security Options:
  seccomp
  Profile: default
Kernel Version: 4.19.76-linuxkit
Operating System: Docker Desktop
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 1.943GiB
Name: docker-desktop
ID: AUL5:XU7P:BMEE:BCGQ:LQFM:JFYJ:UUH7:NPCC:CVNW:M26W:5AWR:PJBU
Docker Root Dir: /var/lib/docker
Debug Mode: true
  File Descriptors: 41
  Goroutines: 57
  System Time: 2020-04-12T11:22:09.0788348Z
  EventsListeners: 4
HTTP Proxy: gateway.docker.internal:3128
HTTPS Proxy: gateway.docker.internal:3129
Registry: https://index.docker.io/v1/
Labels:

Experimental: false
Insecure Registries:
  127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine

easywhatis$