with one click
docker-compose
Advanced Docker Compose: multi-service, scaling, profiles
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Advanced Docker Compose: multi-service, scaling, profiles
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
| name | docker-compose |
| description | Advanced Docker Compose: multi-service, scaling, profiles |
Use the bash tool for advanced Compose workflows. Modern Docker includes Compose as a plugin: use docker compose (with space), not docker-compose.
Check if installed:
command -v docker && docker --version && docker compose version
Install:
# macOS
brew install docker
# Ubuntu / Debian (see https://docs.docker.com/engine/install/ubuntu/)
sudo apt update && sudo apt install -y ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update && sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
docker compose --profile debug up -d
docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d
docker compose --env-file .env.staging up -d
docker compose up -d --scale worker=3
docker compose ps --format json | jq '.[] | {Name, State, Health}'
docker compose top
docker network ls
docker network inspect <network>
docker compose exec <service> ping <other-service>