Images & Containers
Images & Containers Core Concepts Image — read-only template (layers) built from a Dockerfile Container — running instance of an image with a writable layer on …
Images & Containers Core Concepts Image — read-only template (layers) built from a Dockerfile Container — running instance of an image with a writable layer on …
Dockerfile Best Practices Instruction Reference # Base image — use specific tags, never :latest in prod FROM node:20-alpine # Metadata LABEL maintainer="team@co…
Docker Compose & Networking docker-compose.yml Structure services: app: build: context: . dockerfile: Dockerfile target: runner # multi-stage target args: BUILD…
Docker Interview Questions Q: What is the difference between an image and a container? An image is a static, read-only blueprint made of layers. A container is …
Save this stack to your personal DevRecall — add your own notes, track what you're learning, and share what you know with the community.
Get started — free forever