Docker
SkillCloud & infraDocker container management
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Docker skill
What this skill tells your AI
The instructions your AI receives, as published by gebruder/wirken in skills/docker/SKILL.md and read by ahel’s review.
Manage Docker containers and images.
Containers
- List running:
docker ps - List all:
docker ps -a - Run:
docker run -d --name <name> <image> - Stop:
docker stop <name> - Remove:
docker rm <name> - Logs:
docker logs <name> --tail 50 - Exec into:
docker exec -it <name> sh - Inspect:
docker inspect <name> | jq '.[0].State'
Images
- List:
docker images - Pull:
docker pull <image> - Build:
docker build -t <tag> . - Remove:
docker rmi <image>
Compose
- Start:
docker compose up -d - Stop:
docker compose down - Logs:
docker compose logs --tail 50 - Status:
docker compose ps
Cleanup
- Remove stopped containers:
docker container prune -f - Remove unused images:
docker image prune -f - Disk usage:
docker system df
Signals
- GitHub stars
- 171
- Forks
- 5
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by gebruder, not docker
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
docker-gebruder- Source
- github.com/gebruder/wirken