You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,24 +6,48 @@ This is the companion repo to: `<INSERT VIDEO LINK>`
6
6
7
7
## 01 - History and Motivation
8
8
9
+
Examines the evolution of virtualization technologies from bare metal, virtual machines, and containers and the tradeoffs between them.
10
+
9
11
## 02 - Technology Overview
10
12
13
+
Explores the three core Linux features that enable containers to function (cgroups, namespaces, and union filesystems), as well as the architecture of the Docker components.
14
+
11
15
## 03 - Installation and Set Up
12
16
17
+
Covers the steps to install and configure Docker Desktop on your system.
18
+
13
19
## 04 - Using 3rd Party Containers
14
20
21
+
Before we build our own container images, we can familiarize ourselves with the technology by using publicly available container images. This section covers the nuances of data persistence with containers and then highlights some key use cases for using public container images.
22
+
15
23
## 05 - Example Web Application
16
24
25
+
Learning about containerization is interesting, but without a practical example it isn't very useful. In this section we create a 3 tier web application with a React front end client, two apis (node.js + golang), and a database. The application is as simple as possible while still providing a realistic microservice system to containerize.
26
+
17
27
## 06 - Building Container Images
18
28
29
+
Demonstrates how to write Dockerfiles and build container images for the components of the example web app. Starting with a naive implementation, we then iterate towards a production ready container image.
30
+
19
31
## 07 - Container Registries
20
32
33
+
Explains what container registries are and how to use them to share and distribute container images.
34
+
21
35
## 08 - Running Containers
22
36
37
+
Using the containerized web application from sections 05 and 06, we craft the necessary commands to run our application with Docker and Docker Compose. We also cover the variety of runtime configuration options and when to use them.
38
+
23
39
## 09 - Container Security
24
40
41
+
Highlights best practices for container image and container runtime security.
42
+
25
43
## 10 - Interacting with Docker Objects
26
44
45
+
Describes how to use Docker to interact with containers, container images, volumes, and networks.
46
+
27
47
## 11 - Development Workflows
28
48
49
+
Establishes tooling and configuration to enable improved developer experience when working with containers.
50
+
29
51
## 12 - Deploying Containers
52
+
53
+
Demonstrates deploying container applications to production using three different approaches: railway.app, a single node Docker Swarm, and a Kubernetes cluster.
0 commit comments