homelab/server/config/traefik/docker-compose.yml

26 lines
525 B
YAML
Raw Normal View History

2022-02-08 17:00:27 -08:00
version: "3"
services:
traefik:
image: traefik:latest
container_name: traefik_traefik
2022-02-08 17:00:27 -08:00
restart: unless-stopped
networks:
- web
ports:
- 80:80
- 443:443
2022-04-29 12:18:41 -07:00
- 28080:8080
2022-02-08 17:00:27 -08:00
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./traefik.toml:/traefik.toml
- ./config:/config
2022-02-25 12:49:45 -08:00
- $DOCKER_DATA/acme.json:/acme.json
2022-02-08 17:00:27 -08:00
- ./.htpasswd:/.htpasswd
2022-07-09 00:09:56 -07:00
labels:
- traefik.http.routers.traefik.middlewares=authentik@file
2022-02-08 17:00:27 -08:00
networks:
web:
external: true