cheatsheets Jun 28, 2026 updated Jun 28, 2026

Docker Production Checklist

A checklist for production-friendly Docker images and container runtime behavior.

Status
evergreen
Visibility
public
Role Area
Docker / Kubernetes / CI/CD
Priority
P0
Confidence
operational
Category
Deployment
Difficulty
intermediate
Published
Jun 28, 2026
Updated
Jun 28, 2026

Image

  • Base image is pinned.
  • Dependency install is cached.
  • Build context excludes local junk with .dockerignore.
  • Image does not include secrets.
  • Runtime user is non-root.

Runtime

  • App listens on the expected port.
  • Health endpoint exists.
  • Logs go to stdout/stderr.
  • Shutdown is graceful.
  • Environment variables are documented.

Release

  • CI builds the image.
  • Vulnerability scan runs.
  • Image digest is traceable.
  • Rollback image is known.

Source Links

Related Notes

Cheat Sheets Jun 28, 2026 P0 beginner

GCP Cloud Run Checklist

A deployment checklist for containerized backend services on Google Cloud Run.

Cheat Sheets Jun 28, 2026 P0 intermediate

FastAPI Production Checklist

A compact checklist for taking a FastAPI service from useful prototype to production-ready backend.

Cheat Sheets Jun 28, 2026 P0 intermediate

Secrets Management Checklist

A checklist for safely handling API keys, database credentials, and service secrets.

Runbooks Jun 28, 2026 P1 beginner

Cloudflare Pages Deployment Runbook

A deployment checklist for publishing the knowledge base to Cloudflare Pages and mapping notes.bianrui.net.

Backlinks