From apex-spec
Builds and starts Docker Compose services with --build -d, pipes full output to stdout/stderr, reports all issues/warnings/errors/notices, and shows container status.
npx claudepluginhub moshehbenavraham/apex-spec-system --plugin apex-spec# /dockbuild Command Run `sudo docker compose up -d --build` with full output piped to both stderr and stdout, then report every issue, warning, error, or notice from the build process. Use maximum thinking budget for this prompt. Note: Docker commands MAY require `sudo` if you are not in the `docker` group. ## Rules 1. **Report everything** - Surface ALL issues, warnings, errors, deprecation notices, update notices, and informational messages regardless of severity -- even cosmetic, expected, or harmless ones 2. **Full output capture** - Pipe build output through `tee /dev/stderr` so ...
/troubleshootDiagnoses Docker issues including container failures, networking problems, permission errors, and port conflicts. Gathers logs via docker compose, runs diagnostics, consults docs, and suggests or applies fixes with --fix.
/docker-createGenerates optimized Dockerfile and docker-compose.yml for the project. Supports --compose flag and optional multi-stage builds with health checks and non-root users.
/dockerCreates/optimizes Docker setups with multi-stage Dockerfiles, docker-compose.yml for local dev, .dockerignore, security scans (Trivy/Snyk), image slimming, and BuildKit. Supports flags like --init, --optimize, --security.
Share bugs, ideas, or general feedback.
Run sudo docker compose up -d --build with full output piped to both stderr and
stdout, then report every issue, warning, error, or notice from the build process.
Use maximum thinking budget for this prompt.
Note: Docker commands MAY require sudo if you are not in the docker group.
tee /dev/stderr so nothing is lostsudoExecute:
sudo docker compose up -d --build 2>&1 | tee /dev/stderr
Capture the complete output.
Run sudo docker compose ps to confirm all containers are running.
Present:
The user sees the full build output followed by a summary of container status and a categorized list of every issue found (errors, warnings, deprecations, notices, etc.).