docker-wrapper
A type-safe Docker CLI wrapper for Rust.
Installation
[]
= "0.10"
= { = "1", = ["full"] }
MSRV: 1.88.0
Quick Start
use ;
async
Note: Import
DockerCommandtrait to use.execute()on commands.
Features
# Docker Compose support
= { = "0.10", = ["compose"] }
# Container templates (Redis, PostgreSQL, etc.)
= { = "0.10", = ["templates"] }
Compose Example
use ;
new
.file
.detach
.execute
.await?;
Templates Example
use ;
let redis = new
.port
.password;
let id = redis.start.await?;
redis.stop.await?;
Tracing
Every command invocation emits tracing spans and
events so you can observe Docker CLI activity in production. Instrumentation is
enabled by default via the tracing cargo feature; compile with
--no-default-features to drop the dependency entirely.
# Default: tracing instrumentation is on
= "0.10"
# Opt out
= { = "0.10", = false, = ["compose"] }
What gets emitted
Each call to DockerCommand::execute and StreamableCommand::stream is
wrapped in a span:
| Span | Entered by | Fields |
|---|---|---|
docker.command |
CommandExecutor::execute_command |
command, args_count, platform, runtime, timeout_secs |
docker.process |
process spawn | full_command |
docker.timeout |
timeout-wrapped execution | timeout_secs |
docker.stream |
streaming execution | command, mode (handler or channel) |
Within the docker.command span, events are emitted as:
infoon success:exit_code,duration_ms,stdout_len,stderr_len.warnon non-zero exit / spawn failure:exit_code,duration_ms,stderr_snippet(truncated to ~512 bytes), plus the error message.tracefor raw stdout / stderr payloads.
Streaming variants additionally emit debug! for every stdout/stderr line
(set RUST_LOG=docker_wrapper=debug to see them), so noisy builds can be
filtered down by level.
Subscribing
use EnvFilter;
fmt
.with_env_filter
.init;
Useful RUST_LOG filters:
# All docker-wrapper activity
RUST_LOG=docker_wrapper=trace
# Just the top-level execute spans + completion events
RUST_LOG=docker_wrapper=info
# Stream commands with per-line output
RUST_LOG=docker_wrapper::stream=debug
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