docker

Installation
SKILL.md

Docker

Quick Diagnosis

Before writing anything, understand the environment:

docker --version
find . -name "Dockerfile*" -type f
find . -name "*compose*.yml" -o -name "*compose*.yaml" | head -5
docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.Size}}" | head -10

Dockerfile Patterns

Multi-stage build (recommended default)

Installs
1
First Seen
Mar 29, 2026
docker — mguinada/agent-skills