mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 01:40:19 +00:00
- volumes (general overview) - building with the docker engine (bind-mounting the docker socket) - building with kaniko (and init containers) - managing configuration (configmaps, downward api) Also added a new-content.yml file with just the new content (for easier review), containing my plans for future chapters.
19 lines
317 B
INI
19 lines
317 B
INI
global
|
|
daemon
|
|
maxconn 256
|
|
|
|
defaults
|
|
mode tcp
|
|
timeout connect 5000ms
|
|
timeout client 50000ms
|
|
timeout server 50000ms
|
|
|
|
frontend the-frontend
|
|
bind *:80
|
|
default_backend the-backend
|
|
|
|
backend the-backend
|
|
server google.com-80 google.com:80 maxconn 32 check
|
|
server bing.com-80 bing.com:80 maxconn 32 check
|
|
|