docker-deploy
Installation
SKILL.md
Docker and Deployment Patterns
Quick Reference
| Task | Approach |
|---|---|
| New Dockerfile | Choose template by language below |
| Optimize image | Multi-stage build + Alpine/distroless base |
| Dev environment | docker-compose with hot-reload and volumes |
| Production | Multi-stage, non-root user, health checks |
| Debugging | docker logs, docker exec, build with --progress=plain |