Containerization with Docker
Guidelines for packaging applications and their dependencies into portable containers.
Author: Sean Alvarado , 2026-2-27
Docker Basics
docker build -t
Docker Compose
Used for defining and running multi-container applications.
docker compose up -d: Starts all services defined in docker-compose.yml in detached mode (background).
docker compose down: Stops and removes all containers, networks, and images defined in the file.
docker compose logs -f: Follows the live output of the container logs.