homeserver/dashboard/docker-compose.yaml

27 lines
602 B
YAML

services:
app:
image: linuxserver/heimdall:${HEIMDALL_VERSION}
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ${VOLUMES_PATH}/dashboard/heimdall:/config
expose:
- "80"
networks:
- web
labels:
- "traefik.enable=true"
- "traefik.http.routers.heimdall.rule=Host(`dashboard.${DOMAIN}`)"
- "traefik.http.routers.heimdall.entrypoints=web"
- "traefik.http.services.heimdall.loadbalancer.server.port=80"
- "docker.group=dashboard"
restart: unless-stopped
networks:
web:
external: true