homeserver/dashboard/docker-compose.yaml

28 lines
595 B
YAML

version: "3.3"
services:
app:
image: linuxserver/heimdall:2.4.10
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ${VOLUMES_PATH}/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