acc-check-docker-compose-config
Installation
SKILL.md
Docker Compose Configuration Checker
Analyze Docker Compose files for configuration issues in PHP application stacks.
Detection Patterns
1. Missing Health Checks
# BAD: No healthcheck section for service
# GOOD: Health check present
services:
php-fpm:
healthcheck:
test: ["CMD-SHELL", "php-fpm-healthcheck || exit 1"]
interval: 10s
timeout: 3s
retries: 3