Jake Howard
7dd31c0556
This removes the need for a custom config, and means traefik is proxying HTTP2, which is nice
11 lines
239 B
YAML
11 lines
239 B
YAML
version: "2.3"
|
|
|
|
services:
|
|
traefik:
|
|
container_name: traefik
|
|
image: traefik:v2.2.1
|
|
network_mode: host
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- ./traefik:/etc/traefik
|
|
restart: unless-stopped
|