← Back to Skills Marketplace
ppopen

Docker Manager

by pp · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
438
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install openclaw-skill-docker-manager
Description
Docker container lifecycle management. Use when: user asks to list containers, start/stop containers, view logs, check stats, prune unused containers or imag...
README (SKILL.md)

Docker Manager Skill

Manage Docker containers, images, and system resources.

Triggers

  • "docker containers", "list containers"
  • "start container", "stop container"
  • "docker logs", "container logs"
  • "docker stats", "container stats"
  • "docker prune", "cleanup containers"
  • "docker images", "list images"

Commands

List Running Containers

docker ps

List All Containers (including stopped)

docker ps -a

Start a Container

docker start \x3Ccontainer_id_or_name>

Stop a Container

docker stop \x3Ccontainer_id_or_name>

Restart a Container

docker restart \x3Ccontainer_id_or_name>

View Container Logs

# Tail last 100 lines
docker logs --tail 100 \x3Ccontainer_id_or_name>

# Follow logs in real-time
docker logs -f \x3Ccontainer_id_or_name>

Container Stats (CPU, Memory, Network)

# Stream stats for all running containers
docker stats

# Stats for specific container
docker stats \x3Ccontainer_id_or_name>

# Non-streaming (one-time)
docker stats --no-stream \x3Ccontainer_id_or_name>

List Docker Images

docker images

Prune Unused Containers

# Remove all stopped containers
docker container prune -f

Prune Unused Images

# Remove dangling images
docker image prune -f

# Remove all unused images
docker image prune -a -f

Docker System DF (Disk Usage)

docker system df

Bundled Scripts

docker-stats.sh

Script for formatted container stats output.

#!/bin/bash
# Docker container stats with formatted output

echo "Container Stats"
echo "==============="
docker stats --no-stream --format "table {{.Name}}	{{.CPUPerc}}	{{.MemUsage}}	{{.NetIO}}	{{.BlockIO}}"

Usage Examples

Intent Command
List running containers docker ps
List all containers docker ps -a
Start nginx container docker start nginx
Stop nginx container docker stop nginx
View webapp logs docker logs --tail 50 webapp
Monitor stats docker stats
List images docker images
Cleanup unused containers docker container prune -f
Cleanup unused images docker image prune -a -f
Check disk usage docker system df
Usage Guidance
This skill is internally consistent and appears to do what it says: it runs docker CLI commands and includes a small formatting script. Before enabling, consider that the agent (if allowed autonomous invocation) can stop containers and run prune commands which can remove images/data. If you want to limit risk: (1) restrict autonomous invocation or require explicit user confirmation for destructive intents; (2) run the agent with least-privilege Docker access (e.g., a dedicated Docker user/host or restricted socket); and (3) review any outputs before letting the agent execute prune/remove operations.
Capability Analysis
Type: OpenClaw Skill Name: openclaw-skill-docker-manager Version: 1.0.0 The docker-manager skill is a standard utility for managing Docker containers and images. It provides basic commands for listing, starting, stopping, and pruning Docker resources, as well as a simple formatting script (scripts/docker-stats.sh). No evidence of data exfiltration, malicious execution, or prompt injection was found.
Capability Assessment
Purpose & Capability
Name/description and required binaries (docker) align with the included commands and bundled script. All required capabilities (ps, start/stop, logs, stats, prune, images, system df) are coherent with the stated purpose.
Instruction Scope
SKILL.md contains explicit docker CLI commands and examples; instructions operate only on Docker resources and do not attempt to read unrelated files, environment variables, or external endpoints.
Install Mechanism
No install spec; instruction-only skill with one small script. Nothing is downloaded or written during installation, minimizing supply-chain risk.
Credentials
No environment variables, credentials, or config paths requested. The skill relies solely on the local Docker CLI/daemon which is appropriate for the described functionality.
Persistence & Privilege
The skill is not always-enabled and requests no extra privileges. However, like any tool that can be invoked autonomously, it can perform destructive Docker operations (stop, restart, prune). This behavior is expected for a Docker manager but is operationally impactful if run without user confirmation.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install openclaw-skill-docker-manager
  3. After installation, invoke the skill by name or use /openclaw-skill-docker-manager
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Skills Factory publish batch
Metadata
Slug openclaw-skill-docker-manager
Version 1.0.0
License
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is Docker Manager?

Docker container lifecycle management. Use when: user asks to list containers, start/stop containers, view logs, check stats, prune unused containers or imag... It is an AI Agent Skill for Claude Code / OpenClaw, with 438 downloads so far.

How do I install Docker Manager?

Run "/install openclaw-skill-docker-manager" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Docker Manager free?

Yes, Docker Manager is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Docker Manager support?

Docker Manager is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Docker Manager?

It is built and maintained by pp (@ppopen); the current version is v1.0.0.

💬 Comments