YouTip LogoYouTip

Docker Info Command

[![Image 1: Docker Command Encyclopaedia](#)Docker Command Encyclopaedia](#)\\n\\n* * *\\n\\nThe docker info command is used to display detailed information about the Docker system, including Docker version, storage driver, image count, container count, and other important configuration information.\\n\\nThe docker info command is very useful and can help users understand the overall status of the Docker environment.\\n\\n### Syntax\\n\\ndocker info \\n### Examples\\n\\nView docker system information.\\n\\n$ docker info Client: Context: default Debug Mode: false Plugins: buildx: Docker Buildx (Docker Inc., 0.8.1) compose: Docker Compose (Docker Inc., 2.3.3)Server: Containers: 3 Running: 1 Paused: 0 Stopped: 2 Images: 10 Server Version: 20.10.7 Storage Driver: overlay2 Backing Filesystem: extfs Supports d_type: true Native Overlay Diff: true Logging Driver: json-file Cgroup Driver: cgroupfs Cgroup Version: 1 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: d71fcd7d8303cbf684402823e425e9dd2e99285d runc version: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7 init version: de40ad0 Security Options: seccomp Profile: default selinux Kernel Version: 5.10.25-linuxkit Operating System: Docker Desktop OSType: linux Architecture: x86_64 CPUs: 2 Total Memory: 1.942GiB Name: docker-desktop ID: 3WZ2:ZQ7K:6K4E:6ZCR:YITZ:GH2S:6NUB:HTB5:OS7K:AAUI:K7CC:JZL3 Docker Root Dir: /var/lib/docker Debug Mode: true File Descriptors: 45 Goroutines: 49 System Time: 2024-07-23T09:41:47.2527914Z EventsListeners: 4 HTTP Proxy: http://proxy.example.com:80 HTTPS Proxy: https://proxy.example.com:443 No Proxy: localhost,127.0.0.1,docker-registry.example.com Registry: https://index.docker.io/v1/ Labels: Experimental: false Insecure Registries: 127.0.0.0/8 Registry Mirrors: Live Restore Enabled: false WARNING: No swap limit support\\n### Output Explanation\\n\\n**Client**: Information about the Docker client.\\n\\n* `Context`: Current Docker context.\\n* `Debug Mode`: Whether the client has debug mode enabled.\\n* `Plugins`: Installed client plugins, such as `buildx` and `compose`.\\n\\n**Server**: Information about the Docker server (daemon).\\n\\n* `Containers`: Total number of containers.\\n * `Running`: Number of running containers.\\n * `Paused`: Number of paused containers.\\n * `Stopped`: Number of stopped containers.\\n\\n* `Images`: Total number of images.\\n* `Server Version`: Docker server version number.\\n* `Storage Driver`: Storage driver in use (e.g., `overlay2`).\\n* `Backing Filesystem`: Backing filesystem type.\\n* `Supports d_type`: Whether `d_type` is supported.\\n* `Native Overlay Diff`: Whether native Overlay filesystem is supported.\\n* `Logging Driver`: Logging driver in use (e.g., `json-file`).\\n* `Cgroup Driver`: Cgroup driver in use (e.g., `cgroupfs`).\\n* `Cgroup Version`: Cgroup version (e.g., `1`).\\n* `Plugins`: Server plugin list, including volume, network, and logging plugins.\\n* `Swarm`: Swarm mode status (e.g., `inactive`).\\n* `Runtimes`: Supported runtimes (e.g., `runc`).\\n* `Default Runtime`: Default runtime (e.g., `runc`).\\n* `Init Binary`: Initialization binary (e.g., `docker-init`).\\n* `containerd version`: Version of `containerd` in use.\\n* `runc version`: Version of `runc` in use.\\n* `init version`: Version of `init` in use.\\n* `Security Options`: Enabled security options (e.g., `seccomp` and `selinux`).\\n* `Kernel Version`: Kernel version.\\n* `Operating System`: Operating system name.\\n* `OSType`: Operating system type (e.g., `linux`).\\n* `Architecture`: System architecture (e.g., `x86_64`).\\n* `CPUs`: Number of CPUs.\\n* `Total Memory`: Total memory.\\n* `Name`: Docker hostname.\\n* `ID`: Docker instance ID.\\n* `Docker Root Dir`: Docker root directory.\\n* `Debug Mode`: Whether the server has debug mode enabled.\\n * `File Descriptors`: Number of file descriptors.\\n * `Goroutines`: Number of Goroutines.\\n * `System Time`: System time.\\n * `EventsListeners`: Number of event listeners.\\n\\n* `HTTP Proxy`: Configured HTTP proxy.\\n* `HTTPS Proxy`: Configured HTTPS proxy.\\n* `No Proxy`: List of addresses that should bypass the proxy.\\n* `Registry`: Registry address in use.\\n* `Labels`: Configured labels.\\n* `Experimental`: Whether experimental features are enabled.\\n* `Insecure Registries`: List of configured insecure registries.\\n* `Registry Mirrors`: Registry mirror list.\\n* `Live Restore Enabled`: Whether live restore is enabled.\\n\\n**WARNING**: Warning messages (e.g., swap limit support not enabled).\\n\\n* * Docker Command Encyclopaedia](#)
← Prop Script CharsetDocker Build Command β†’