docker-compose-skill
Installation
SKILL.md
<quick_start>
- Copy the compose.yml template below for your stack (Postgres, Redis, etc.)
- Create a
.envfile with database credentials - Run
docker compose up -dto start services - Use
docker compose logs -fto monitor </quick_start>
<success_criteria>
- All services start with
docker compose up -dand reach healthy state - Health checks configured for every database/cache service
- Environment variables externalized to
.env(no hardcoded secrets in compose.yml) - Hot reload working for application code via volume mounts
docker compose down -vcleanly removes all containers and volumes </success_criteria>