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

26 lines
476 B
YAML
Raw Normal View History

2024-02-15 02:09:59 -08:00
version: '3.9'
2022-02-08 17:00:27 -08:00
services:
traefik:
image: traefik:latest
container_name: traefik_traefik
restart: "no"
2022-02-08 17:00:27 -08:00
networks:
web:
2024-02-27 13:58:07 -08:00
ipv4_address: 172.18.0.27
monitoring:
2022-02-08 17:00:27 -08:00
ports:
- 80:80
- 443:443
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
2022-07-17 11:00:01 -07:00
monitoring:
2023-02-15 14:17:23 -08:00
external: true