docker.com

The Engine API is an HTTP API served by Docker Engine. It is the API the Docker client uses to communicate with the Engine, so everything the Docker client can do can be done with the API. Most of the client's commands map directly to API endpoints (e.g. docker ps is GET /containers/json). The

104 endpoints developer_tools
📄 Docs 📋 OpenAPI spec 🔬 Try in Swagger UI

SDKs by language (3 total)

# See https://github.com/openwrt/docker
# See https://github.com/mingchen/docker-android-build-box
# See https://github.com/GoogleCloudPlatform/cloud-sdk-docker
curl examples
Get system information
curl \
  https://docker.com/1.33/info
Ping
curl \
  https://docker.com/1.33/_ping
List nodes
curl \
  https://docker.com/1.33/nodes
Endpoints (104 total)
GET
/info
Get system information
GET
/_ping
Ping
GET
/nodes
List nodes
GET
/swarm
Inspect swarm
GET
/tasks
List tasks
GET
/events
Monitor events
GET
/configs
List configs
GET
/plugins
List plugins
GET
/secrets
List secrets
GET
/version
Get version
GET
/volumes
List volumes
GET
/networks
List networks
Language coverage
Shell
1
Dockerfile
2
At a glance
Total SDKs3
Languages2
Endpoints104
Categories1
https://docker.com/1.33
Other Docker APIs (2)
dvphub