بنقرة واحدة
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.