Docker Engine API and SDKs
The Engine API is the API served by Docker Engine. It allows you to control every aspect of Docker from within your own applications, build tools to manage and monitor applications running on Docker, and even use it to build apps on Docker itself.
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. For example:
- Running and managing containers
- Managing Swarm nodes and services
- Reading logs and metrics
- Creating and managing Swarms
- Pulling and managing images
- Managing networks and volumes
The API can be accessed with any HTTP client, but we also provide SDKs in Python and Go to make it easier to use from programming languages.
As an example, the docker run
command can be easily implemented in various programming languages and by hitting the API directly with curl
:
To learn more, take a look at the getting started guide
© 2017 Docker, Inc.
Licensed under the Apache License, Version 2.0.
Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries.
Docker, Inc. and other parties may also have trademark rights in other terms used herein.
https://docs.docker.com/v1.13/engine/api/