From partme-ai-full-stack-skills
Guides Docker Compose configuration for multi-container apps including services, networking, volumes, health checks, environment variables, and CLI commands. Use for local orchestration of app, DB, cache, queues.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Use this skill whenever the user wants to:
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Use this skill whenever the user wants to:
docker-compose.yml 定义 services、image/build、ports、volumes、environment、depends_on;用 profiles 做可选服务。docker compose up -d、down、logs -f、ps;override 用 -f 或 docker-compose.override.yml。.env 或 env_file 注入变量;secrets 用 Docker secrets 或外部方案。services:
app:
build: .
ports:
- "3000:3000"
depends_on:
db:
condition: service_healthy
environment:
DATABASE_URL: postgres://user:pass@db:5432/mydb
db:
image: postgres:16
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U user"]
interval: 10s
timeout: 5s
retries: 3
volumes:
pgdata:
docker compose, docker-compose.yml, multi-container, 多容器, 编排