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

23 lines
408 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
restart: "no"
2022-02-08 17:00:27 -08:00
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
2022-07-09 00:44:40 -07:00
- ./traefik.yaml:/traefik.yaml
2022-02-08 17:00:27 -08:00
- ./config:/config
2022-02-25 12:49:45 -08:00
- $DOCKER_DATA/acme.json:/acme.json
2022-02-08 17:00:27 -08:00
networks:
web:
external: true