a rust interface to Docker containers
Add the following to your Cargo.toml
file
toml
[dependencies]
docker-api = "0.3"
Default endpoints include: - Containers - Images - Networks - Volumes - Exec - System
To enable swarm endpoints add a swarm
feature to Cargo.toml
like so:
toml
docker-api = { version = "0.3", features = ["swarm"] }
Swarm endpoints include: - Swarm - Nodes - Services - Tasks - Secrets - Configs - Plugins
To enable HTTPS connection to docker add a tls
flag to Cargo.toml
.
Examples for most API endpoints can be found in the examples directory.
This crate is a fork of shiplift.