Database DevOps Automation Tool
A CLI tool that automates the setup and management of containerized databases. One-click deployment for MongoDB, Redis, MySQL, PostgreSQL with integrated GUI management tools.
MongoDB, Redis, MySQL, PostgreSQL, and more out of the box
Automatic setup of Mongo Express, phpMyAdmin, Redis Commander
Start complete database environments with a single command
Preconfigured dev, staging, and production profiles
# Install using Go
go install github.com/nexoral/containdb@latest
# Or download binary from releases
curl -L https://github.com/nexoral/containdb/releases/latest/download/containdb-linux-amd64 -o containdb
chmod +x containdb
sudo mv containdb /usr/local/bin/# Start MongoDB with Mongo Express GUI
containdb start mongodb --with-gui
# Start PostgreSQL with custom configuration
containdb start postgres \
--port 5432 \
--password mypassword \
--database myapp
# List all running database containers
containdb list
# Stop and remove containers
containdb stop mongodb