Video description
This book took me from someone interested in Docker to someone using it effectively in several projects.
Mark Elston, Advantest America
Go from zero to production readiness with Docker in 22 bite-sized lessons! Learn Docker in a Month of Lunches is an accessible task-focused guide to Docker on Linux, Windows, or Mac systems. In it, you’ll learn practical Docker skills to help you tackle the challenges of modern IT, from cloud migration and microservices to handling legacy systems. There’s no excessive theory or niche-use cases—just a quick-and-easy guide to the essentials of Docker you’ll use every day.
about the technology
The idea behind Docker is simple: package applications in lightweight virtual containers that can be easily installed. The results of this simple idea are huge! Docker makes it possible to manage applications without creating custom infrastructures. Free, open source, and battle-tested, Docker has quickly become must-know technology for developers and administrators.
about the book
Learn Docker in a Month of Lunches introduces Docker concepts through a series of brief hands-on lessons. Following a learning path perfected by author Elton Stoneman, you’ll run containers by chapter 2 and package applications by chapter 3. Each lesson teaches a practical skill you can practice on Windows, macOS, and Linux systems. By the end of the month you’ll know how to containerize and run any kind of application with Docker.
what's inside
- Package applications to run in containers
- Put containers into production
- Build optimized Docker images
- Run containerized apps at scale
about the audience
For IT professionals. No previous Docker experience required.
about the author
Elton Stoneman is a consultant, a former architect at Docker, a Microsoft MVP, and a Pluralsight author.
A well-written and cogent approach to learning and implementing containerized applications with Docker.
Philip Taffet, SOHOsoft
This is a must-have resource for anyone wanting to come to grips with Docker—from novice to expert, there’s something for everyone.
Kevin Orr, Sumus Solutions
I recommend anyone serious about learning Docker begin with this book.
Marcus Brown, Tradewind Energy
NARRATED BY JULIE BRIERLEY
Table of Contents
Part 1 Understanding Docker containers and images
Chapter 1 Before you begin
Chapter 1 Building new cloud-native apps
Chapter 1 Is this book for you?
Chapter 2 Understanding Docker and running Hello World
Chapter 2 Connecting to a container like a remote computer
Chapter 2 Hosting a website in a container
Chapter 2 Understanding how Docker runs containers
Chapter 3 Building your own Docker images
Chapter 3 Writing your first Dockerfile
Chapter 3 Understanding Docker images and image layers
Chapter 3 Optimizing Dockerfiles to use the image layer cache
Chapter 4 Packaging applications from source code into Docker Images
Chapter 4 App walkthrough: Java source code
Chapter 4 App walkthrough: Node.js source code
Chapter 4 App walkthrough: Go source code
Chapter 5 Sharing images with Docker Hub and other registries
Chapter 5 Running and using your own Docker registry
Chapter 5 Using image tags effectively
Chapter 6 Using Docker volumes for persistent storage
Chapter 6 Running containers with Docker volumes
Chapter 6 Limitations of filesystem mounts
Part 2 Running distributed applications in containers
Chapter 7 Running multi-container apps with Docker Compose
Chapter 7 Running a multi-container application with Compose
Chapter 7 How Docker plugs containers together
Chapter 7 Application configuration in Docker Compose
Chapter 8 Supporting reliability with health checks and dependency checks
Chapter 8 Starting containers with dependency checks
Chapter 8 Defining health checks and dependency checks in Docker Compose
Chapter 9 Adding observability with containerized monitoring
Chapter 9 Exposing metrics from your application
Chapter 9 Running a Prometheus container to collect metrics
Chapter 9 Running a Grafana container to visualize metrics
Chapter 10 Running multiple environments with Docker Compose
Chapter 10 Using Docker Compose override files
Chapter 10 Injecting configuration with environment variables and secrets
Chapter 10 Reducing duplication with extension fields
Chapter 11 Building and testing applications with Docker and Docker Compose
Chapter 11 Capturing build settings with Docker Compose
Chapter 11 Writing CI jobs with no dependencies except Docker
Part 3 Running at scale with a container orchestrator
Chapter 12 Understanding orchestration: Docker Swarm and Kubernetes
Chapter 12 Running applications as Docker Swarm services
Chapter 12 Managing network traffic in the cluster
Chapter 12 Understanding the choice between Docker Swarm and Kubernetes
Chapter 13 Deploying distributed applications as stacks in Docker Swarm
Chapter 13 Managing app configuration with config objects
Chapter 13 Managing confidential settings with secrets
Chapter 13 Storing data with volumes in the Swarm
Chapter 14 Automating releases with upgrades and rollbacks
Chapter 14 Configuring production rollouts with Compose
Chapter 14 Configuring service rollbacks
Chapter 14 Managing downtime for your cluster
Chapter 15 Configuring Docker for secure remote access and CI/CD
Chapter 15 Configuring Docker for secure remote access
Chapter 15 Adding continuous deployment to your CI pipeline
Chapter 16 Building Docker images that run anywhere: Linux, Windows, Intel, and Arm
Chapter 16 Building multi-arch images from one or more Dockerfiles
Chapter 16 Pushing multi-arch images to registries with manifests
Chapter 16 Building multi-arch images with Docker Buildx
Part 4 Getting your containers ready for production
Chapter 17 Optimizing your Docker images for size, speed, and security
Chapter 17 Choosing the right base images
Chapter 17 Minimizing image layer count and layer size
Chapter 17 Taking your multi-stage builds to the next level
Chapter 18 Application configuration management in containers
Chapter 18 Packaging config for every environment
Chapter 18 Loading configuration from the runtime
Chapter 18 Configuring legacy apps in the same way as new apps
Chapter 19 Writing and managing application logs with Docker
Chapter 19 Relaying logs from other sinks to stdout
Chapter 19 Collecting and forwarding container logs
Chapter 19 Managing your log output and collection
Chapter 20 Controlling HTTP traffic to containers with a reverse proxy
Chapter 20 Handling routing and SSL in the reverse proxy
Chapter 20 Improving performance and reliability with the proxy
Chapter 20 Using a cloud-native reverse proxy
Chapter 21 Asynchronous communication with a message queue
Chapter 21 Using a cloud-native message queue
Chapter 21 Adding new features with message handlers
Chapter 22 Never the end