بنقرة واحدة
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 المهني
Retrieve secrets and vault items from 1Password using the op CLI with a service account token.
Create, read, and search Apple Notes on macOS using osascript AppleScript.
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
Read, search, create, and update Notion pages and databases via the Notion API.
| name | docker |
| description | Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI. |
| always | false |
| 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.