add heimdall dashboard

This commit is contained in:
Yax 2022-03-13 17:57:56 +01:00
parent 5ff37ff0b7
commit 05dbfa1da9
4 changed files with 68 additions and 35 deletions

25
www/docker-compose.heimdall.yml Executable file
View file

@ -0,0 +1,25 @@
version: '3.8'
services:
heimdall:
image: lscr.io/linuxserver/heimdall
container_name: heimdall
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ${ROOT_INSTALL}/data/heimdall:/config
expose:
- 80
networks:
- wwww-frontend
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.http.routers.dashy.rule=Host(`${FQDN_DASHBOARD}`)
- traefik.http.routers.dashy.entrypoints=https
- traefik.http.routers.dashy.tls=true
- traefik.docker.network=wwww-frontend