1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-11-08 21:21:06 +00:00

Add traefik compose file

This commit is contained in:
Mo 2022-11-19 15:45:12 +01:00
parent a8c43831fa
commit a75be7b7e2

View file

@ -0,0 +1,18 @@
services:
traefik:
image: docker.io/library/traefik:latest
container_name: traefik
volumes:
- ~/volumes/traefik/etc:/etc/traefik:Z,ro
- ~/volumes/traefik/logs:/volumes/logs:Z
- ~/volumes/traefik/certs:/volumes/certs:Z
environment:
- TZ=Europe/Berlin
networks:
- traefik
ports:
- "80:80"
- "443:443"
networks:
traefik: