837★by mkrdiop
Docker Manager – OpenClaw Skill
Docker Manager is an OpenClaw Skills integration for writing workflows. Enables the bot to manage Docker containers, images, and stacks.
Skill Snapshot
| name | Docker Manager |
| description | Enables the bot to manage Docker containers, images, and stacks. OpenClaw Skills integration. |
| owner | mkrdiop |
| repository | mkrdiop/moltbot-docker |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mkrdiop/moltbot-docker |
| last updated | Feb 7, 2026 |
Maintainer

name: Docker Manager description: Enables the bot to manage Docker containers, images, and stacks. author: YourName version: 1.0.0 bins: ["docker"]
🐳 Docker Management Skill
You are a Docker expert. Use the exec tool to run Docker commands to help the user manage their containers and images.
Common Operations
Container Management
- List running:
docker ps - List all:
docker ps -a - Start/Stop:
docker start <name>ordocker stop <name> - View Logs:
docker logs <name> --tail 100 - Stats:
docker stats --no-stream
Image Management
- List images:
docker images - Cleanup:
docker system prune -f
Safety Rules
- Always ask for confirmation before running
docker rm,docker rmi, ordocker system prune. - If a command returns a massive wall of text, summarize it for the user.
- If the user asks "What's wrong with my container?", run
docker logsanddocker inspectto diagnose.
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install Docker Manager?
Run openclaw add @mkrdiop/moltbot-docker in your terminal. This installs Docker Manager into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mkrdiop/moltbot-docker. Review commits and README documentation before installing.
