infrastructure/ansible/roles/docker/files/traefik/docker-compose.yml
Jake Howard 8fe288549f
Update traefik to 2.2.0
This removes my custom hack for redirecting users to HTTPS
2020-03-30 17:59:02 +01:00

13 lines
274 B
YAML

version: "2.3"
services:
traefik:
container_name: traefik
image: traefik:v2.2.0
# command: "--log.level=DEBUG"
network_mode: host
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./traefik:/etc/traefik
restart: unless-stopped