docker-orchestrator

docker-orchestrator is a skill for Claude Code, Codex from FutureJJ/claude-skills. It costs 56 tokens per session (290 once invoked), scanned A, original, MIT.

Guidance for packaging applications in Docker containers and running groups of containers with Docker Compose.

In plain words
What is it for?
Writing Dockerfiles, creating Compose configurations, improving image builds, configuring container networking, and setting up Docker-based delivery workflows.
Why use it?
It helps create smaller, safer container images and avoid common deployment and networking mistakes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Writing Dockerfiles, creating Compose configurations, improving image builds, configuring container networking, and setting up Docker-based delivery workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/futurejj/claude-skills/docker-orchestrator
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 FutureJJ/claude-skills --skill docker-orchestrator
Clone the repo
git clone --depth 1 https://github.com/FutureJJ/claude-skills

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/futurejj/claude-skills/docker-orchestrator/github.svg)](https://agentmods.dev/skills/futurejj/claude-skills/docker-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/futurejj/claude-skills/docker-orchestrator"><img src="https://agentmods.dev/badge/skills/futurejj/claude-skills/docker-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for docker-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/futurejj/claude-skills/docker-orchestrator"><img src="https://agentmods.dev/badge/skills/futurejj/claude-skills/docker-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 290 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.00056 $0.00290
Opus 5 $0.00028 $0.00145
Sonnet 5 $0.00011 $0.00058
Haiku 4.5 $0.00006 $0.00029

Measured 8d ago against content hash 4ec8cc3db5b6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

docker-orchestrator 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 8d 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-orchestrator/SKILL.md · 30 lines

What it actually says

Docker Orchestrator

You are a Docker expert focused on production-grade container builds and orchestration.

Core Principles

  • Multi-stage builds always. Separate build and runtime stages. Final image should be minimal.
  • Non-root users. Never run containers as root in production.
  • Layer caching. Order Dockerfile instructions from least to most frequently changing.
  • .dockerignore is mandatory. Exclude node_modules, .git, build artifacts.

Anti-Patterns

  • latest tag in production — pin specific versions
  • RUN apt-get update without apt-get install in same layer — cache becomes stale
  • COPY . . before installing dependencies — invalidates cache on every code change
  • Running as root — security vulnerability
  • Not using health checks — orchestrator can't detect unhealthy containers

Reference Guide

Topic Reference Load When
Dockerfile patterns references/dockerfile.md Multi-stage builds, optimization
Docker Compose references/compose.md Service definitions, networking, volumes
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 30 lines · 56 tokens per session scan A 4ec8cc3db5b6

Subscribe to this mod's changes

docker-orchestrator is a skill published in the GitHub repository FutureJJ/claude-skills (3 stars, last pushed 6mo ago), licensed MIT. It adds 56 tokens to every session and 290 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

offensive-container-escape

Container escape and breakout techniques targeting Docker, containerd, and Podman runtimes. Covers privileged container breakout via host filesystem mount and nsenter, Docker socket abuse through /var/run/docker.sock, Linux capability exploitation including CAPSYSADMIN, CAPSYSPTRACE, and CAPNETADMIN, cgroup v1…

SnailSploit/Claude-Red · 196 tokens

apple-container

Apple's open-source container CLI to build, run, and manage OCI/Linux containers as lightweight per-container VMs on Apple-silicon macOS — no Docker daemon required. Use when the user mentions the container CLI, "apple container", running or building containers on macOS without Docker/Podman, container run, container…

sanjay3290/ai-skills · 146 tokens

container-orchestration

Docker, Kubernetes, and AWS ECS/Fargate patterns. Triggers on: Dockerfile, docker-compose, kubernetes, k8s, helm, pod, deployment, service, ingress, container, image, ecs, fargate, task definition, ecs service, awsvpc, FARGATESPOT, ALB, ecs vs kubernetes.

aiskillstore/marketplace · 80 tokens

docker

Apply when writing or reviewing Dockerfiles, docker compose files, or container build pipelines. Covers layer caching, multi-stage builds, security hardening, and compose conventions.

sordi-ai/skill-everything · 35 tokens

auth-architect

Designs and implements authentication and identity systems. Covers OAuth2 and OIDC flows including authorization code, PKCE, and client credentials; JWT design including RS256 vs HS256, key rotation, token blacklisting, and refresh token strategy; RBAC and ABAC modeling; SSO with Google, GitHub, and SAML 2.0; session…

mturac/hermes-supercode-skills · 166 tokens

obs-guardian

Builds observability, monitoring, alerting, and incident visibility for production systems. Covers OpenTelemetry instrumentation for traces, metrics, and logs; structured logging with JSON, correlation IDs, and sampling; Prometheus and Grafana scrape configs, dashboards, and recording rules; distributed tracing with…

mturac/hermes-supercode-skills · 165 tokens