docker-manager

docker-manager is a skill for Claude Code from amanning3390/hermeshub. It costs 33 tokens per session (533 once invoked), scanned A, original, MIT.

A skill for building, running, inspecting, and cleaning up Docker containers and images. Docker packages an application with its dependencies so it can run in an isolated environment.

In plain words
What is it for?
Use it with Dockerfiles, Docker Compose projects, container debugging, image optimization, and containerized deployments.
Why use it?
It provides a consistent workflow for containerizing applications, running multiple services, checking logs, and diagnosing deployment problems.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it with Dockerfiles, Docker Compose projects, container debugging, image optimization, and…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/amanning3390/hermeshub/docker-manager
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add amanning3390/hermeshub --skill docker-manager
Clone the repo
git clone --depth 1 https://github.com/amanning3390/hermeshub

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for docker-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/amanning3390/hermeshub/docker-manager.svg)](https://agentmods.dev/skills/amanning3390/hermeshub/docker-manager)
Your own site
<a href="https://agentmods.dev/skills/amanning3390/hermeshub/docker-manager"><img src="https://agentmods.dev/badge/skills/amanning3390/hermeshub/docker-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 533 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.00533
Opus 5 $0.00016 $0.00267
Sonnet 5 $0.00007 $0.00107
Haiku 4.5 $0.00003 $0.00053

Measured 6d ago against content hash c213777e320a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

docker-manager scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/docker-manager/SKILL.md · 68 lines

What it actually says

Docker Manager

Container lifecycle management with production-ready patterns.

When to Use

  • User mentions Docker, containers, images, or Dockerfiles
  • User wants to containerize an application
  • User needs docker-compose orchestration
  • User asks about container debugging or optimization

Procedure

Building Images

  1. Analyze the project to determine base image and dependencies
  2. Create a multi-stage Dockerfile for minimal final image
  3. Build: docker build -t name:tag .
  4. Verify: docker images | grep name

Running Containers

  1. Run: docker run -d --name my-app -p 8080:3000 name:tag
  2. Check logs: docker logs -f my-app
  3. Exec into: docker exec -it my-app /bin/sh

Docker Compose

  1. Create docker-compose.yml with service definitions
  2. Start: docker compose up -d
  3. Monitor: docker compose logs -f
  4. Scale: docker compose up -d --scale web=3

Cleanup

  1. Stop containers: docker stop $(docker ps -q)
  2. Remove containers: docker container prune
  3. Remove images: docker image prune -a
  4. Remove volumes: docker volume prune

Best Practices

  • Use .dockerignore to exclude unnecessary files
  • Pin base image versions (node:20-alpine, not node:latest)
  • Use multi-stage builds to reduce final image size
  • Run as non-root user in production
  • Use HEALTHCHECK for container health monitoring

Pitfalls

  • Never store secrets in Dockerfiles or images
  • Avoid running as root in production containers
  • Watch for large context sizes slowing builds
  • Handle signal propagation for graceful shutdown

Verification

  • Container running: docker ps | grep name
  • Health check passing: docker inspect --format='{{.State.Health}}' name
  • Logs clean: docker logs --tail 50 name
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 68 lines · 33 tokens per session scan A c213777e320a

Subscribe to this mod's changes

docker-manager is a skill published in the GitHub repository amanning3390/hermeshub (35 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 533 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

compute-env-setup

Set up a reproducible Feynman compute environment for research jobs. Use when a task needs Python/R packages, GPU libraries, containers, Modal, SSH, caches, or managed model runtime setup.

companion-inc/feynman · 45 tokens

securing-kubernetes-on-cloud

This skill covers hardening managed Kubernetes clusters on EKS, AKS, and GKE by implementing Pod Security Standards, network policies, workload identity, RBAC scoping, image admission controls, and runtime security monitoring. It addresses cloud-specific security features including IRSA for EKS, Workload Identity for…

xalgorix/xalgorix · 80 tokens

detecting-privilege-escalation-in-kubernetes-pods

Detect and prevent privilege escalation in Kubernetes pods by monitoring security contexts, capabilities, and syscall patterns with Falco and OPA policies.

xalgorix/xalgorix · 40 tokens

implementing-rbac-hardening-for-kubernetes

Harden Kubernetes Role-Based Access Control by implementing least-privilege policies, auditing role bindings, eliminating cluster-admin sprawl, and integrating external identity providers.

xalgorix/xalgorix · 41 tokens

docker-socket-mount

Docker / containerd socket mounted into a container → host RCE. Common in CI runners, GitOps controllers (ArgoCD, Flux), and 'Docker-in-Docker' setups. Single-command escape via docker run --rm --privileged -v /:/host alpine chroot /host.

PurpleAILAB/Decepticon · 67 tokens