docker
Docker and container infrastructure skill: Dockerfiles, multi-stage builds, Compose, networking, volumes, health checks, registries, BuildKit, security hardening, CI/CD integration, debugging, and orchestration patterns. Use when the task touches container configuration, images, or deployment infrastructure.
What this skill does
<EXTREMELY-IMPORTANT> This skill is a routing shell over the Docker reference set. Non-negotiable rules: 1. Read `references/stack.md` first to determine the project's base images, registry, and build conventions. 2. Then load only the references needed for the actual task. 3. **Multi-stage builds by default** — separate dependency install, build, and production stages. 4. **Non-root user in production** — never run containers as root. Add a user and `USER` directive. 5. **No secrets in images** — no `ARG`/`ENV` for passwords, no `COPY .env`, no secrets in build layers. 6. **Pin base image versions** — `node:22-slim`, not `node:latest`. Use digest pinning for critical images. 7. **`.dockerignore` is mandatory** — exclude `node_modules`, `.git`, `.env`, `dist`, test artifacts. 8. **Frozen lockfiles in builds** — `--frozen-lockfile` / `--ci` for reproducible installs. </EXTREMELY-IMPORTANT> # docker ## Inputs - `$request`: The Docker task — Dockerfile, Compose, registry, optimization, or debugging target ## Goal Route Docker work through proven container patterns so images are small, secure, reproducible, and follow the project's infrastructure conventions. ## Step 0: Read the stack contract Always start with: - `references/stack.md` That establishes: base images, registry, build tool (Docker/BuildKit/Podman), CI integration, and locked conventions. **Success criteria**: The project's container infrastructure choices are explicit before writing any Dockerfile or Compose config. ## Step 1: Load only the relevant references Use the routing table to pick reference files. Do not bulk-load the full reference tree. | Task | Read | |------|------| | Base images, registry, build conventions, CI | `references/stack.md` | | Writing or editing a Dockerfile | `references/dockerfile.md` | | Multi-stage builds, layer optimization, caching | `references/multi-stage.md` | | docker-compose services, networking, volumes | `references/compose.md` | | .dockerignore, build context optimization | `references/build-context.md` | | Health checks, readiness, startup probes | `references/health-checks.md` | | Security: non-root, read-only FS, capabilities, scanning | `references/security.md` | | Image size optimization, distroless, slim, alpine | `references/image-optimization.md` | | Registry: push, pull, tagging, ECR/GCR/GHCR/DockerHub | `references/registry.md` | | BuildKit features, cache mounts, secret mounts | `references/buildkit.md` | | CI/CD: GitHub Actions, GitLab CI, build+push pipelines | `references/ci-cd.md` | | Debugging: logs, exec, inspect, networking issues | `references/debugging.md` | | Language-specific: Node.js, Python, Go, Rust, Java | `references/language-patterns.md` | | Volumes, bind mounts, tmpfs, named volumes | `references/volumes.md` | | Networking: bridge, host, overlay, DNS, port mapping | `references/networking.md` | Multiple tasks? Read multiple files. The references are self-contained. **Success criteria**: Only the task-relevant Docker conventions are in play. ## Step 2: Implement with the core Docker guardrails Keep these rules active: - multi-stage builds: deps → build → production - `.dockerignore` excludes everything unnecessary from build context - pin base image tags — never `:latest` in production - non-root `USER` in the final stage - `COPY` only what's needed in each stage — not the entire repo - health checks on every long-running service - no secrets in `ARG`, `ENV`, or `COPY` — use BuildKit `--mount=type=secret` - combine `RUN` commands to minimize layers — but keep readability - order layers from least to most frequently changing (deps before code) **Success criteria**: The container is small, secure, reproducible, and follows the project's conventions. ## Step 3: Verify the build Use the narrowest relevant verification: - `docker build` succeeds - image size is reasonable for the language/framework - container starts and health check passes - `.dockerignore` excludes the right files (`docker build --dry-run` or check context size) - no secrets visible in `docker history` or `docker inspect` **Success criteria**: The image builds, runs, and passes basic health validation. ## Guardrails - Do not inline the whole Docker handbook in `SKILL.md`. - Do not skip `references/stack.md`. - Do not use `latest` tags for base images in production Dockerfiles. - Do not `COPY . .` without a proper `.dockerignore`. - Do not run containers as root. - Do not put secrets in build args or env vars baked into images. - Do not add `disable-model-invocation`; this is a normal domain skill. ## When To Load References - `references/stack.md` Always. - then only the task-relevant files under `references/` ## Output Contract Report: 1. which Docker references were loaded 2. the build pattern chosen (multi-stage, single, etc.) 3. the change made 4. the verification run (build success, image size, health check)
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.