Why this matters
Digests provide deterministic deployments and avoid surprise upgrades.
Use immutable image digests (repo@sha256:...) instead of mutable tags for production workloads.
Digests provide deterministic deployments and avoid surprise upgrades.
Side-by-side examples engineers can pattern-match during review.
image: myorg/api:latest
image: myorg/api@sha256:1f3c...deadbeef
image: backend@sha256:abc123...image: backend:1.2.3From the same buckets as this rule.