16 releases (7 breaking)
| new 0.10.2 | Jan 16, 2026 |
|---|---|
| 0.9.1 | Jan 4, 2026 |
| 0.8.4 | Dec 11, 2025 |
| 0.8.3 | Oct 15, 2025 |
| 0.2.0 | Jul 27, 2025 |
#106 in Development tools
1,166 downloads per month
Used in 2 crates
1.5MB
32K
SLoC
docker-wrapper
A type-safe Docker CLI wrapper for Rust.
Installation
[dependencies]
docker-wrapper = "0.10"
tokio = { version = "1", features = ["full"] }
MSRV: 1.89.0
Quick Start
use docker_wrapper::{DockerCommand, RunCommand, StopCommand, RmCommand};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Run a container
let container = RunCommand::new("nginx:alpine")
.name("my-nginx")
.port(8080, 80)
.detach()
.execute()
.await?;
println!("Started: {}", container.short());
// Stop and remove
StopCommand::new("my-nginx").execute().await?;
RmCommand::new("my-nginx").execute().await?;
Ok(())
}
Note: Import
DockerCommandtrait to use.execute()on commands.
Features
# Docker Compose support
docker-wrapper = { version = "0.10", features = ["compose"] }
# Container templates (Redis, PostgreSQL, etc.)
docker-wrapper = { version = "0.10", features = ["templates"] }
Compose Example
use docker_wrapper::{DockerCommand, compose::{ComposeUpCommand, ComposeDownCommand, ComposeCommand}};
ComposeUpCommand::new()
.file("docker-compose.yml")
.detach()
.execute()
.await?;
Templates Example
use docker_wrapper::{RedisTemplate, Template};
let redis = RedisTemplate::new("my-redis")
.port(6379)
.password("secret");
let id = redis.start().await?;
redis.stop().await?;
Why docker-wrapper?
This crate wraps the Docker CLI rather than calling the Docker API directly (like bollard).
| docker-wrapper | bollard | |
|---|---|---|
| Approach | Shells out to docker CLI |
Calls Docker REST API directly |
| Setup | Just needs docker in PATH |
Needs API socket access |
| Compose | Native docker compose support |
Not supported |
| Compatibility | Works with Docker, Podman, Colima, etc. | Docker API only |
| Performance | Process spawn overhead | Direct API calls |
| Use case | CLI tools, scripts, dev tooling | High-performance services |
Choose docker-wrapper when: You're building CLI tools, need Compose support, want to work with Docker alternatives, or are migrating shell scripts to Rust.
Choose bollard when: You need maximum performance, direct API access, or are building a long-running service with many Docker operations.
Documentation
- API Reference - Complete documentation with examples
- Examples - Working code examples
License
MIT OR Apache-2.0
Dependencies
~8–24MB
~212K SLoC