Install
1
Install the plugin$
npx claudepluginhub moshehbenavraham/apex-spec-system --plugin apex-specWant just this command?
Add to a custom plugin, then install with one command.
Description
Quick Docker Compose build and start with full output
Command Content
/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
- Report everything - Surface ALL issues, warnings, errors, deprecation notices, update notices, and informational messages regardless of severity -- even cosmetic, expected, or harmless ones
- Full output capture - Pipe build output through
tee /dev/stderrso nothing is lost - Read-only on spec system - Never modify state.json, session specs, or task checklists
- Sudo required - Prefix docker commands with
sudo
Steps
1. Run Docker Compose build
Execute:
sudo docker compose up -d --build 2>&1 | tee /dev/stderr
Capture the complete output.
2. Verify container status
Run sudo docker compose ps to confirm all containers are running.
3. Report results
Present:
- The full build output
- Final container status (name, state, ports)
- Every warning, error, deprecation notice, update notice, or informational message found in the output -- no matter the severity level
Output
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.).
Stats
Stars13
Forks2
Last CommitMar 8, 2026
Actions