Docker Manager OpenClaw Skill

Docker container lifecycle management. Use when: user asks to list containers, start/stop containers, view logs, check stats, prune unused containers or imag...

v1.0.0 Updated 1 mo ago

Installation

clawhub install openclaw-skill-docker-manager

Requires npm i -g clawhub

373

Downloads

0

Stars

1

current installs

1 all-time

1

Versions

EU EU-Hosted Inference API

Power your OpenClaw skills with the best open-source models.

Drop-in OpenAI-compatible API. No data leaves Europe.

Explore Inference API

GLM

GLM 5

$1.00 / $3.20

per M tokens

Kimi

Kimi K2.5

$0.60 / $2.80

per M tokens

MiniMax

MiniMax M2.5

$0.30 / $1.20

per M tokens

Qwen

Qwen3.5 122B

$0.40 / $3.00

per M tokens

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 <container_id_or_name>

Stop a Container

docker stop <container_id_or_name>

Restart a Container

docker restart <container_id_or_name>

View Container Logs

# Tail last 100 lines
docker logs --tail 100 <container_id_or_name>

# Follow logs in real-time
docker logs -f <container_id_or_name>

Container Stats (CPU, Memory, Network)

# Stream stats for all running containers
docker stats

# Stats for specific container
docker stats <container_id_or_name>

# Non-streaming (one-time)
docker stats --no-stream <container_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}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.NetIO}}\t{{.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

Statistics

Downloads 373
Stars 0
Current installs 1
All-time installs 1
Versions 1
Comments 0
Created Mar 7, 2026
Updated Mar 7, 2026

Latest Changes

v1.0.0 · Mar 7, 2026

Skills Factory publish batch

Quick Install

clawhub install openclaw-skill-docker-manager
EU Made in Europe

Chat with 100+ AI Models in one App.

Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.

Customer Support