AgentStack
SKILL verified MIT Self-run

Docker

skill-eobarretooo-clawlite-docker · by eobarretooo

Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-eobarretooo-clawlite-docker

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Docker? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Docker

Use this skill when the user wants to manage containers, images, or compose stacks.

Containers

docker ps                              # list running containers
docker ps -a                           # list all containers
docker start 
docker stop 
docker restart 
docker rm 
docker logs  --tail 100 -f
docker exec -it  bash
docker inspect 
docker stats --no-stream

Images

docker images
docker pull image:tag
docker build -t name:tag .
docker rmi image:tag
docker image prune -f

Docker Compose

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

Volumes & Networks

docker volume ls
docker volume inspect vol_name
docker network ls
docker network inspect net_name

Cleanup

docker system prune -f             # remove stopped containers, dangling images
docker system prune -af            # also remove unused images (destructive)
docker volume prune -f

Safety notes

  • Always confirm before docker system prune -af or removing named volumes.
  • Prefer docker compose down over docker rm -f for compose stacks.
  • Check container logs before forceful removal to capture error context.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.