1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/deploy/traefik/compose.yaml

20 lines
356 B
YAML
Raw Normal View History

2022-11-19 14:45:12 +00:00
services:
traefik:
image: docker.io/library/traefik:latest
container_name: traefik
2022-11-19 14:54:28 +00:00
restart: unless-stopped
2022-11-19 14:45:12 +00:00
volumes:
2022-11-19 15:47:21 +00:00
- ./etc:/etc/traefik:Z,ro
- ./certs:/volumes/certs:Z
2022-11-19 14:45:12 +00:00
environment:
- TZ=Europe/Berlin
networks:
- traefik
ports:
- "80:80"
- "443:443"
networks:
traefik:
2022-11-19 15:00:47 +00:00
name: traefik