A powerful container debugging tool that injects a full-featured shell into any container - even minimal distroless images - making debugging seamless and powerful. No need to modify your containers or add debugging tools at build time.
- 🐳 Docker
- 🦭 Podman
- 🐋 Nerdctl
- 🔧 systemd-nspawn
- Inject a complete shell environment into running containers
- Works with any container, including minimal and distroless images
- Zero container modifications required
- No build-time dependencies
Download the latest release into ~/.local/bin
:
mkdir -p ~/.local/bin
curl -sL https://github.com/raphaelcoeffic/dive/releases/latest/download/dive-x86_64-unknown-linux-musl -o ~/.local/bin/dive
chmod +x ~/.local/bin/dive
Prerequisites:
- Rust toolchain (install via rustup)
# Build the binary
cargo build --release
# Optional: Install system-wide
cargo install --path .
# Optional: Build x86_64 static binary
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_MUSL_LINKER=x86_64-linux-gnu-gcc
export CC=x86_64-linux-gnu-gcc
rustup target add x86_64-unknown-linux-musl
cargo build --target=x86_64-unknown-linux-musl
# Optional: Build arm64 static binary
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=aarch64-linux-gnu-gcc
export CC=aarch64-linux-gnu-gcc
rustup target add aarch64-unknown-linux-musl
cargo build --target=aarch64-unknown-linux-musl
# Debug a running container
dive <container-name>
# Or run directly through cargo
cargo run <container-name>
# Debug a distroless container
dive my-distroless-app
# Debug a specific container by ID
dive 7d3f2c1b9e4a
Contributions are welcome! Feel free to open issues and pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.
- 🔧 Add package manager for easy installation of additional debugging tools
- 🗑️ Add a clean-up command to remove local files
- 🐳 Support for more container runtimes
- 🔍 Enhanced inspection tools
- ⚡ Performance optimizations
Want to contribute to any of these features? Check out our Contributing section!
This project was inspired by and builds upon ideas from:
- Christian Brauner's article on Mounting into mount namespaces
- Ivan Velichko's guide on Docker: How To Debug Distroless And Slim Containers
- The Orbstack Debug feature and its approach to container debugging