- Docker CLI or Docker Compose?
- Both. Daily CLI commands (run, build, exec, logs) plus Compose basics (up, down, logs, exec with service names).
- Does it cover multi-stage builds?
- Yes — the canonical pattern with builder and runtime stages. Essential for small production images.
- What about security hardening?
- Non-root user, read-only filesystems, dropping capabilities, and secret mounts are covered. Not a full security guide but the common controls.
- Is Docker Swarm or k8s in here?
- Docker only. For Kubernetes commands see the kubectl Cheatsheet; Swarm is legacy.