Docker

No Change
hold
First Added:March 3, 2023 Updated: May 18, 2026

Docker popularized containers and still owns the de facto docker CLI and Dockerfile workflow. We rate the Docker Inc product stack (hold), especially Docker Desktop licensing and hub-centric defaults: prefer Open Container Initiative-compatible engines (Rancher Desktop, Podman) for new local dev. Containerization as a technique remains adopt.

Blurb

Docker helps developers bring their ideas to life by conquering the complexity of app development.

Summary

What to separate:

PieceGarden stance
OCI images / containersadopt via Containerization
docker build / BuildKit in CICommon; also available via buildah/kaniko
docker CLI on laptopOK as a front-end when the engine is Rancher/Podman/containerd
Docker Desktop (paid)hold for new org-wide adoption
Docker Hub as only registryAvoid single-vendor lock-in; use ECR/GCR/ACR + mirrors

Why hold (vendor stack): commercialization of Desktop, license audits at scale, and historical tie-in to Docker-specific paths (#category/containers era tooling). The engine (containerd, runc) is industry standard; the Docker Inc desktop bundle is not.

When the CLI still makes sense: tutorials, Dev Container docs, Dive, and CI snippets that call docker. Prefer rootless/daemonless options where security policy requires it.

Alternatives for local dev: Rancher Desktop (assess), Podman (trial in garden), or Linux VM with containerd only.

Details

TopicNotes
DockerfileUbiquitous; keep multi-stage, non-root, minimal bases
ComposeFine for local stacks; not a prod orchestrator (Kubernetes)
CIdocker build or buildx; pin BuildKit; scan images in pipeline
SecurityDo not mount /var/run/docker.sock into untrusted CI without isolation

Garden pattern: adopt containers; hold betting the estate on Docker Desktop; use portable OCI tooling and document engine choice in README.

References

Related: