Compare commits
8 Commits
d4fe8c4575
...
mike/scs-d
Author | SHA1 | Date | |
---|---|---|---|
ebf03f3e56 | |||
7aa80d9800 | |||
761ea8fef8 | |||
94a71d6d77 | |||
66fc64dcac | |||
3f0d1d77ca | |||
7c6e8a88a3 | |||
302cc66d55 |
24
README.md
24
README.md
@ -1,11 +1,21 @@
|
||||
# Welcome to [Slidev](https://github.com/slidevjs/slidev)!
|
||||
# Demystifying Docker
|
||||
This repo is a work in progress documenting my upcoming presentation for Scenic City Summit 2025. This repo is currently split into 2 parts.
|
||||
|
||||
To start the slide show:
|
||||
## Slide Deck presentaiton
|
||||
The slides folder contains my slide deck for the event. To view the presentation:
|
||||
|
||||
- `pnpm install`
|
||||
- `pnpm dev`
|
||||
- visit <http://localhost:3030>
|
||||
```shell
|
||||
cd slides
|
||||
yarn
|
||||
yarn dev
|
||||
```
|
||||
Once everything is done it should open a browser window to http://localhost:3030. I am using [slidev](https://sli.dev) for the slide deck. All of the "slides" are in a single markdown file in the slides directory.
|
||||
|
||||
|
||||
## Code examples
|
||||
The examples folder contains several Docker examples.
|
||||
|
||||
|
||||
`examples/fullstack` is a basic example containing a backend NodeJS application with a React frontend as well as a Postgres Database. The project is set up so that you can do all development in dev containers. The `node_modules` folder for the backend is isolated from your host system and only exists inside the running container. For this reason, you will need to use a devcontainer in order to be able to get things like Intellisense and typings.
|
||||
|
||||
Edit the [slides.md](./slides.md) to see the changes.
|
||||
|
||||
Learn more about Slidev at the [documentation](https://sli.dev/).
|
||||
|
BIN
assets/open-dev-container.m4v
Normal file
BIN
assets/open-dev-container.m4v
Normal file
Binary file not shown.
@ -14,11 +14,16 @@ cp backend/.env.example backend/.env
|
||||
docker compose up
|
||||
```
|
||||
|
||||
The first time you run `docker compose up` it may take a few minutes as Docker will need to build images for the frontend and backend. Also there are some database migrations and seed data that need to happen. Those are handled by `backend/dev-entrypoint.sh`. This is handled for you automatically since it is baked into the image. You will most likely need to run `sudo docker compose up` or add yourself to the privileged `docker` group (`sudo usermod -aG docker YOUR_USER`) in order for `Traefik` to bind to port 80.
|
||||
The first time you run `docker compose up` it may take a few minutes as Docker will need to build images for the frontend and backend. Also there are some database migrations and seed data that need to happen. Those are handled by `backend/dev-entrypoint.sh`. This is handled for you automatically since it is baked into the image. Once everything is up you should be able to access the frontend at [http://app.docker.localhost:8888]() and the backend at [http://app.docker.localhost:8888/api]()
|
||||
|
||||

|
||||
|
||||
|
||||
## Developing
|
||||
When running the `compose` stack, the backend node_modules are isolated from your host system. This is common in dev environment setups. In this case it is advised to use a Dev container. The following video demonstrates starting a dev container by using the VSCode plugin.
|
||||
|
||||
<video src="../../assets/open-dev-container.m4v" controls></video>
|
||||
|
||||
### Proxying and routes
|
||||
You will notice that the backend is listening on `http://0.0.0.0:3333/` but the frontend is making requests to `/api/`. This is designed to mimic how you would deploy something like this in production where the backend would be behind a reverse proxy. Traefik has some really nice middleware that allows us to easily tell it to route requests destined for `/api` to `/`. The bit that handles that are these labels:
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
FROM node:lts-alpine3.22 AS base
|
||||
HEALTHCHECK --interval=5s --timeout=10s --start-period=5s --retries=5 \
|
||||
HEALTHCHECK --interval=5s \
|
||||
--timeout=10s \
|
||||
--start-period=5s \
|
||||
--retries=5 \
|
||||
CMD sh -c 'wget --no-verbose --tries=1 --spider http://127.0.0.1:3333 || exit 1'
|
||||
|
||||
# All deps stage
|
||||
@ -9,12 +12,10 @@ ADD package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
FROM deps AS develop
|
||||
WORKDIR /app
|
||||
COPY dev-entrypoint.sh /entrypoint.sh
|
||||
COPY .env.example /app/.env
|
||||
RUN chmod +x /entrypoint.sh
|
||||
RUN cat /entrypoint.sh
|
||||
ENV NODE_ENV=development
|
||||
WORKDIR /app
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
EXPOSE 3333
|
||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
||||
|
||||
|
@ -3,7 +3,6 @@
|
||||
echo "starting up..."
|
||||
node ace generate:key
|
||||
|
||||
|
||||
# Check for pending migrations by parsing output
|
||||
PENDING_MIGRATIONS=$(node ace migration:status | grep -ic 'pending')
|
||||
|
@ -12,6 +12,6 @@ import UsersController from '#controllers/users_controller'
|
||||
router.get('users', [UsersController, 'index'])
|
||||
router.get('/', async () => {
|
||||
return {
|
||||
hello: 'world',
|
||||
hello: 'SCS',
|
||||
}
|
||||
})
|
||||
|
@ -1,3 +1,4 @@
|
||||
name: fullstack
|
||||
services:
|
||||
frontend:
|
||||
image: frontend:latest
|
||||
@ -22,14 +23,10 @@ services:
|
||||
image: backend:latest
|
||||
build:
|
||||
context: ./backend
|
||||
volumes:
|
||||
- backend_node_modules:/backend/node_modules
|
||||
- ./backend/:/backend
|
||||
labels:
|
||||
- "traefik.http.middlewares.strip-api-prefix.stripprefix.prefixes=/api"
|
||||
- "traefik.http.routers.backend.rule=Host(`app.docker.localhost`) && PathPrefix(`/api`)"
|
||||
- "traefik.http.routers.backend.middlewares=strip-api-prefix@docker"
|
||||
|
||||
env_file:
|
||||
- ./backend/.env
|
||||
depends_on:
|
||||
|
@ -5,12 +5,9 @@ RUN yarn install
|
||||
COPY . .
|
||||
|
||||
FROM base AS build
|
||||
WORKDIR /app
|
||||
COPY --from=base /app/* .
|
||||
RUN yarn build
|
||||
|
||||
FROM base AS develop
|
||||
COPY --from=base /app/ .
|
||||
EXPOSE 5173
|
||||
ENTRYPOINT [ "yarn", "dev", "--host", "0.0.0.0" ]
|
||||
|
||||
|
11
slides/README.md
Normal file
11
slides/README.md
Normal file
@ -0,0 +1,11 @@
|
||||
# Welcome to [Slidev](https://github.com/slidevjs/slidev)!
|
||||
|
||||
To start the slide show:
|
||||
|
||||
- `pnpm install`
|
||||
- `pnpm dev`
|
||||
- visit <http://localhost:3030>
|
||||
|
||||
Edit the [slides.md](./slides.md) to see the changes.
|
||||
|
||||
Learn more about Slidev at the [documentation](https://sli.dev/).
|
BIN
slides/images/pexels-joshsorenson-1714208.jpg
Normal file
BIN
slides/images/pexels-joshsorenson-1714208.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
BIN
slides/images/pexels-luis-gomes-166706-546819.jpg
Normal file
BIN
slides/images/pexels-luis-gomes-166706-546819.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 132 KiB |
BIN
slides/images/pexels-markusspiske-1089438.jpg
Normal file
BIN
slides/images/pexels-markusspiske-1089438.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 MiB |
163
slides/slides.md
163
slides/slides.md
@ -5,15 +5,13 @@ theme: seriph
|
||||
# like them? see https://unsplash.com/collections/94734566/slidev
|
||||
background: https://cover.sli.dev
|
||||
# some information about your slides (markdown enabled)
|
||||
title: Welcome to Slidev
|
||||
title: Demystifying Docker - SCS 2025
|
||||
info: |
|
||||
## Slidev Starter Template
|
||||
Presentation slides for developers.
|
||||
## The basics of containerization and beyond by Mike Conrad
|
||||
Scenic City Summit 2025
|
||||
|
||||
Learn more at [Sli.dev](https://sli.dev)
|
||||
# apply unocss classes to the current slide
|
||||
Learn more at [Hackanooga](https://hackanooga.com/scs)
|
||||
class: text-center
|
||||
# https://sli.dev/features/drawing
|
||||
drawings:
|
||||
persist: false
|
||||
# slide transition: https://sli.dev/guide/animations.html#slide-transitions
|
||||
@ -29,14 +27,12 @@ mdc: true
|
||||
|
||||
Mike Conrad - SCS 2025
|
||||
|
||||
<div @click="$slidev.nav.next" class="mt-12 py-1 flex" hover:bg="white op-10">
|
||||
<div @click="$slidev.nav.next" class="mt-12 py-1 flex justify-center flex-col">
|
||||
<!-- Press Space for next page <carbon:arrow-right /> -->
|
||||
<div class="ml-auto">
|
||||
<a href="https://git.hackanooga.com/mikeconrad/demystifying-docker.get">Example Repo<br /> (with slides)</a>
|
||||
<br />
|
||||
<br>
|
||||
<img src="./images/talk.jpg">
|
||||
</div>
|
||||
Follow along
|
||||
<p><a href="https://hackanooga.com/scs">https://hackanooga.com/scs</a></p>
|
||||
<small>Includes slide deck, and repo with examples</small>
|
||||
<img src="./images/talk.jpg" width="200">
|
||||
</div>
|
||||
|
||||
<div class="abs-br m-6 text-xl">
|
||||
@ -54,23 +50,21 @@ The last comment block of each slide will be treated as slide notes. It will be
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
layout: statement
|
||||
background: ./images/pexels-markusspiske-1089438.jpg
|
||||
---
|
||||
|
||||
# Who is this for?
|
||||
|
||||
## About you
|
||||
- Some experience with Docker/containers
|
||||
- Some experience with BASH
|
||||
- Want to better understand how containers work
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
---
|
||||
|
||||
## Follow Along
|
||||
**Example Repo** - https://git.hackanooga.com/mikeconrad/demystifying-docker
|
||||
# The 3 universal constants in programming
|
||||
<v-click>
|
||||
<h2>1) The speed of light</h2>
|
||||
</v-click>
|
||||
<v-click>
|
||||
<h2>2) "It's more complicated than you think"</h2>
|
||||
</v-click>
|
||||
<v-click>
|
||||
<h2>3) "It works on my machine"</h2>
|
||||
<br />
|
||||
<small>Source: <a href="https://www.linkedin.com/posts/robertroskam_the-3-universal-constants-in-programming-activity-7339260450074775553-ofik?utm_source=share&utm_medium=member_desktop&rcm=ACoAACZXneYB_uWiOE0T9VO3caUkn7m0ZMrRS_o">Some random guy on the internet</a></small>
|
||||
</v-click>
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
@ -79,18 +73,42 @@ layout: center
|
||||
|
||||
<img src="./images/docker-meme.jpg" width="300"/>
|
||||
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
layout: image-right
|
||||
image: ./images/pexels-markusspiske-1089438.jpg
|
||||
---
|
||||
|
||||
## Common Use cases for containers
|
||||
- Reproducible dev environments
|
||||
- Testing in CI/CD environments
|
||||
- Better "Portability" of application code
|
||||
- Snapshot of application code at specific point in time
|
||||
# Who is this for?
|
||||
|
||||
## About you
|
||||
- Some experience with Docker/containers
|
||||
- Familiarity with Linux/BASH/zsh, etc
|
||||
- Want to better understand how containers work
|
||||
- Want to learn new techniques for automation
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: image-left
|
||||
image: ./images/pexels-joshsorenson-1714208.jpg
|
||||
---
|
||||
|
||||
## Follow Along
|
||||
<small>Visit the link to check out the sample Git repository.</small>
|
||||
|
||||
**Example Repo** - https://hackanooga.com/scs
|
||||
|
||||
**Prerequisites**
|
||||
- Docker Engine (Linux) or Docker Desktop (Windows/MacOS)
|
||||
- VSCode
|
||||
- Git
|
||||
- yarn, npm or pnpm (for viewing slides)
|
||||
|
||||
### VSCode plugins
|
||||
- [Official Docker Plugin](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker)
|
||||
- [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
|
||||
- [Container Tools](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-containers)
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
@ -115,13 +133,13 @@ layout: center
|
||||
|
||||
## Containers vs Virtual Machines
|
||||
|
||||
| Feature | VM | Container |
|
||||
|------------------|----------------|------------------|
|
||||
| Feature | VMs | Containers |
|
||||
|------------------|-----------------------|------------------------------|
|
||||
| Boot time | Minutes | Seconds |
|
||||
| Resource usage | Heavy | Lightweight |
|
||||
| Isolation | Strong | Process-level |
|
||||
| Portability | Medium | Very High |
|
||||
|
||||
| Operating System | Needs full OS install | Uses host OS/kernel features |
|
||||
In reality we use containers and vm's together. Containers run inside of VM's for better security and isolation, especially in cloud and multi tenant environments.
|
||||
|
||||
---
|
||||
@ -131,26 +149,17 @@ layout: center
|
||||
|
||||
## What is Docker?
|
||||
|
||||
- A tool to build and run containers
|
||||
- Written in GO
|
||||
- Uses Client/Server model with REST API (`docker cli` and `dockerd`)
|
||||
- Eco system of tools (Compose, Swarm, etc)
|
||||
- Public Image Registry (Dockerhub)
|
||||
- Docker client typically runs on same machine as server but doesn't have to
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
---
|
||||
## What is Docker?
|
||||
|
||||
- A tool to build and run containers
|
||||
- Containers are exclusive to Linux
|
||||
- Docker engine runs containers using Linux features like:
|
||||
- Uses Linux kernal features like:
|
||||
- Namespaces
|
||||
- cgroups
|
||||
- Union file systems
|
||||
- Container runs from an image layered with base image and application code
|
||||
|
||||
- Containers are just processes
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
@ -182,24 +191,42 @@ layout: center
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
layout: two-cols-header
|
||||
---
|
||||
|
||||
## Bind/Volume Mounts
|
||||
<div class="flex items-center flex-col">
|
||||
<h1 class="ml-5">Bind/Volume Mounts</h1>
|
||||
|
||||
- 2 most common storage mechanisms
|
||||
- Different use cases and security implications
|
||||
<p>2 most common storage mechanisms<br />Different use cases and security implications</p>
|
||||
</div>
|
||||
::left::
|
||||
## Bind Mounts
|
||||
|
||||
- Created/managed by user.
|
||||
- Files from host mounted directly into container.
|
||||
- Container processes can modify files on host system.
|
||||
- Strongly tied to the host.
|
||||
- Best for things like dev containers.
|
||||
|
||||
::right::
|
||||
|
||||
|
||||
## Volume mounts
|
||||
- Created/managed by Docker Daemon.
|
||||
- Data is stored on host filesystem.
|
||||
- Used for persistent data.
|
||||
|
||||
<!--
|
||||
It is possible to modify the data directly via normal tools but unsupported and can cause unintended side-effects due to the overlayfs storage driver.
|
||||
An example would be creating a postgres volume for persistent database storage.
|
||||
-->
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
image: 'https://unsplash.com/collections/oGE7TYSLt3I/software-development
|
||||
equal: false
|
||||
left: false
|
||||
---
|
||||
## Bind Mounts
|
||||
|
||||
- Mounting files/directories from the host machine directly into a container (merged overlayfs layer).
|
||||
- Processes inside container can modify files on host system.
|
||||
- Bind mounts are strongly tied to the host
|
||||
- Best for things like dev containers where you need to mount source code into container and have hot reload, etc.
|
||||
|
||||
## Bind Mount Example
|
||||
```bash
|
||||
@ -253,20 +280,6 @@ $ docker volume inspect postgresData
|
||||
- Docker creates a volume named postgresData and mounts that directory inside the container.
|
||||
<!-- https://docs.docker.com/engine/storage/bind-mounts/ -->
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
layout: center
|
||||
---
|
||||
|
||||
## Volume mounts
|
||||
- Created and managed by the Docker Daemon
|
||||
- Volume data is stored on host filesystem but managed by Docker.
|
||||
- Used for persistent data.
|
||||
|
||||
<!--
|
||||
It is possible to modify the data directly via normal tools but unsupported and can cause unintended side-effects due to the overlayfs storage driver.
|
||||
An example would be creating a postgres volume for persistent database storage.
|
||||
-->
|
||||
|
||||
---
|
||||
transition: fade-out
|
||||
@ -319,7 +332,7 @@ EXPOSE 5173
|
||||
|
||||
```bash
|
||||
$ docker build -t react .
|
||||
$ docker run --rm -P react
|
||||
$ docker run --rm -p 5173:5173 react
|
||||
```
|
||||
<!--
|
||||
Run docker image and demonstrate dev container functionality. Attach to the running container
|
||||
|
Reference in New Issue
Block a user