一键导入
docker
Docker workflow helpers — list containers, build, run, logs, compose up/down, prune. Non-interactive only.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Docker workflow helpers — list containers, build, run, logs, compose up/down, prune. Non-interactive only.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | docker |
| description | Docker workflow helpers — list containers, build, run, logs, compose up/down, prune. Non-interactive only. |
Run Docker operations in non-interactive mode.
/docker ps # List running containers
/docker logs service-name # Tail logs for a service
/docker build # Build the project image
/docker up # docker compose up -d
/docker down # docker compose down
/docker restart service # Restart a specific service
/docker prune # docker system prune -f (no named volumes)
/docker shell service # Open a shell in a running container
| Argument | Action |
|---|---|
ps or (empty) | docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" | cat |
logs <service> | docker logs <service> --tail 50 | cat |
build | Read claude/build.md for build command |
up | docker compose up -d 2>&1 | tail -20 |
down | docker compose down 2>&1 |
restart <service> | docker compose restart <service> 2>&1 |
prune | docker system prune -f 2>&1 (confirm first) |
shell <service> | docker exec <container-id> /bin/sh (non-interactive: run a command) |
images | docker images | cat |
stats | docker stats --no-stream | cat |
docker exec -it (interactive — hangs terminal)shell: run a specific command instead: docker exec <id> /bin/sh -c "ls /app"prune: warn about consequences before runninglogs: always --tail N to limit outputclaude/build.md for project-specific Docker compose file paths and service namesRoute a codebase question to the right tool — structural graph, semantic search, or risk analysis. Use when you need to find or understand code without knowing exact file names.
Auto-configure CLAUDE.md and claude/ knowledge docs for a new project. Use when setting up Brain Bootstrap in a new repository. Discovers the codebase, fills in templates, and writes project-specific configuration.
Build the project and verify it compiles cleanly. Use after making changes to confirm nothing is broken before running tests. Reads the build command from claude/build.md.
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to claude/tasks/todo.md so the next session can resume cleanly.
Remove all git worktrees for merged branches. Accepts --dry-run to preview. Use after merging PRs or for weekly maintenance.
Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.