Jake Howard
c184936114
This is the first upgrade of a container through this repo, and it worked perfectly! 🎉
12 lines
272 B
YAML
12 lines
272 B
YAML
version: "3"
|
|
|
|
services:
|
|
traefik:
|
|
container_name: traefik
|
|
image: traefik:v2.1.4
|
|
# command: "--log.level=DEBUG"
|
|
network_mode: host
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- ./traefik:/etc/traefik
|
|
restart: unless-stopped
|