一键导入
docker
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create or update SKILL.md packages with deterministic frontmatter, clear trigger descriptions, and valid command/script execution mappings.
Narrative summarization, storytelling, and long-form synthesis in Sigrid's voice — named after the Viking court poets who kept memory alive through story.
Maintain stable user and project facts across sessions using workspace memory files and runtime memory state.
Schedule reminders and recurring tasks with the `cron` tool (add/list/remove/enable/disable/run).
Read, write, and search local Obsidian vault markdown files via the filesystem.
Remote-control tmux sessions for interactive CLIs by sending keystrokes and capturing pane output.
| name | docker |
| description | Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI. |
| always | false |
| script | docker |
| metadata | {"clawlite":{"emoji":"🐳","requires":{"bins":["docker"]}}} |
Use this skill when the user wants to manage containers, images, or compose stacks.
docker ps # list running containers
docker ps -a # list all containers
docker start <name|id>
docker stop <name|id>
docker restart <name|id>
docker rm <name|id>
docker logs <name|id> --tail 100 -f
docker exec -it <name|id> bash
docker inspect <name|id>
docker stats --no-stream
docker images
docker pull image:tag
docker build -t name:tag .
docker rmi image:tag
docker image prune -f
docker compose up -d
docker compose down
docker compose ps
docker compose logs -f service
docker compose restart service
docker compose pull
docker compose exec service bash
docker volume ls
docker volume inspect vol_name
docker network ls
docker network inspect net_name
docker system prune -f # remove stopped containers, dangling images
docker system prune -af # also remove unused images (destructive)
docker volume prune -f
docker system prune -af or removing named volumes.docker compose down over docker rm -f for compose stacks.