بنقرة واحدة
docker-compose
Docker Compose orchestration for multi-container applications
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Docker Compose orchestration for multi-container applications
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Chrome DevTools automation for browser testing, debugging, and performance analysis
Clojure development workflows including REPL, deps.edn, testing, and linting
Full stack integration patterns connecting Clojure backend and React frontend
Git workflow management including branching, commits, PRs, and conflict resolution
OpenCode plugin development guidance including structure, events, tools, patterns, and best practices
PM2 process management for Node.js applications in production
| name | docker-compose |
| description | Docker Compose orchestration for multi-container applications |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"devops","tools":"docker"} |
Use me when orchestrating multi-container applications, especially when:
docker-compose up -d - Start services in detached modedocker-compose down - Stop and remove containersdocker-compose build - Build imagesdocker-compose logs -f - Follow logsdocker-compose exec service sh - Execute command in containerdocker-compose ps - List running containersservices:
app:
build: .
ports:
- "3000:3000"
environment:
- NODE_ENV=production
volumes:
- ./data:/app/data
depends_on:
- db
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 10s
retries: 3
db:5432).dockerignore to exclude unnecessary filesdepends_on: {condition: service_healthy} for orderingdocker-compose logs --tail=100 service for recent logsdocker-compose exec service shdocker network inspectdocker-compose config--no-cache flag when troubleshooting builds