skills$openclaw/Docker Manager
mkrdiop837

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.

837 stars1.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameDocker Manager
descriptionEnables the bot to manage Docker containers, images, and stacks. OpenClaw Skills integration.
ownermkrdiop
repositorymkrdiop/moltbot-docker
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mkrdiop/moltbot-docker
last updatedFeb 7, 2026

Maintainer

mkrdiop

mkrdiop

Maintains Docker Manager in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
277 B
SKILL.md
1000 B
SKILL.md

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> or docker 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

  1. Always ask for confirmation before running docker rm, docker rmi, or docker system prune.
  2. If a command returns a massive wall of text, summarize it for the user.
  3. If the user asks "What's wrong with my container?", run docker logs and docker inspect to diagnose.
README.md

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.