selfhosting/www/docker-compose.heimdall.yml
2022-12-07 18:52:49 +01:00

27 lines
No EOL
644 B
YAML
Executable file

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
networks:
wwww-frontend:
name: wwww-frontend