docker-compose-orchestration
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: .skill-info.txt Description: Docker Compose Orchestration Skill =================================== Created: October 17, 2025 Version: 1.0.0 Category: DevOps, Container Orchestration, Application Deployment File Summary: ------------- SKILL.md - 47KB, 2,173 lines - Comprehensive skill documentation README.md - 13KB, 711 lines - Overview and quick reference EXAMPLES.md - 31KB, 1,295 lines - Production-ready examples Total: 91KB of comprehensive Docker Compose documentation Content Hi
Malicious tool definition detected
Tool: EXAMPLES.md [1/3] Description: # Docker Compose Examples A comprehensive collection of real-world Docker Compose examples covering various service patterns, application architectures, and deployment scenarios.
Tool: EXAMPLES.md [2/3]
Tool: EXAMPLES.md [3/3]
Malicious tool definition detected
Tool: README.md [1/2] Description: # Docker Compose Orchestration A comprehensive skill for managing multi-container applications with Docker Compose, covering service orchestration, networking, volumes, health checks, and production deployment strategies.
Tool: README.md [2/2] Description: test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')"] ``` ### Custom Script ```yaml healthcheck: test: ["CMD", "node", "healthcheck.js"] interval: 30s timeout: 10s retries: 3 ``` ## Best Practices ### 1.
Malicious tool definition detected
Tool: SKILL.md [1/5] Description: --- name: docker-compose-orchestration description: Container orchestration with Docker Compose for multi-container applications, networking, volumes, and production deployment --- # Docker Compose Orchestration A comprehensive skill for orchestrating multi-container applications using Docker Compose.
Tool: SKILL.md [2/5]
Tool: SKILL.md [3/5] Description: up --scale web=3 # Scale service to 3 instances # Stop services docker compose stop # Stop containers docker compose down # Stop and remove containers/networks docker compose down -v # Also remove volumes docker compose down --rmi all # Also remove images # Restart services docker compose restart # Restart all services docker compose restart web # Restart specific service ``` ### Service Management ```bash # Build services docker compose build # Build all servic
Tool: SKILL.md [4/5] Description: grafana/grafana:latest container_name: grafana ports: - "3000:3000" environment: - GF_SECURITY_ADMIN_USER=admin - GF_SECURITY_ADMIN_PASSWORD=admin - GF_INSTALL_PLUGINS=grafana-piechart-panel volumes: - grafana-data:/var/lib/grafana - ./grafana/provisioning:/etc/grafana/provisioning:ro networks: - monitoring depends_on: - prometheus node-exporter: image: prom/node-exporter:latest container_name: node-exporter ports: - "9100:9100" volumes: - /proc:/host/proc:ro -
Tool: SKILL.md [5/5] Description: # Check network connectivity docker compose exec service-name ping other-service docker compose exec service-name netstat -tulpn # Review configuration docker compose config docker compose config --services docker compose config --volumes # Clean up resources docker compose down -v docker system prune -a --volumes ``` ## Advanced Usage ### Multi-Stage Builds for Optimization ```yaml services: app: build: context: .