headquarter/traefik/docker-compose.yml
2022-12-30 09:18:57 +01:00

21 lines
368 B
YAML

version: '3'
networks:
web:
external: true
services:
traefik:
image: traefik:2.9
restart: unless-stopped
networks:
- web
ports:
- "80:80"
- "443:443"
- "8080:8080"
volumes:
- './traefik.yml:/etc/traefik/traefik.yml'
- './acme.json:/acme.json'
- '/var/run/docker.sock:/var/run/docker.sock:ro'