v1

latestSwagger 2.02026-07-17107109407.9 KB
System

Get version

Returns the version of Docker that is running and various information about the system that Docker is running on.

get/version

Response

no error

Versionstring

The version of the daemon

ApiVersionstring

The default (and highest) API version that is supported by the daemon

MinAPIVersionstring

The minimum API version that is supported by the daemon

GitCommitstring

The Git commit of the source code that was used to build the daemon

GoVersionstring

The version Go used to compile the daemon, and the version of the Go runtime in use.

Osstring

The operating system that the daemon is running on ("linux" or "windows")

Archstring

The architecture that the daemon is running on

KernelVersionstring

The kernel version (uname -r) that the daemon is running on.

This field is omitted when empty.

Experimentalboolean

Indicates if the daemon is started with experimental features enabled.

This field is omitted when empty / false.

BuildTimestring

The date and time that the daemon was compiled.

Example response

{
  "Components": [
    {
      "Name": "Engine",
      "Version": "19.03.12"
    }
  ],
  "Version": "19.03.12",
  "ApiVersion": "1.40",
  "MinAPIVersion": "1.12",
  "GitCommit": "48a66213fe",
  "GoVersion": "go1.13.14",
  "Os": "linux",
  "Arch": "amd64",
  "KernelVersion": "4.19.76-linuxkit",
  "Experimental": true,
  "BuildTime": "2020-06-22T15:49:27.000000000+00:00"
}