homeserver/dashboard/docker-compose.yaml

27 lines
592 B
YAML
Raw Normal View History

2021-01-09 20:40:51 +01:00
services:
app:
2023-01-12 10:03:26 +01:00
image: linuxserver/heimdall:${HEIMDALL_VERSION}
2021-01-09 20:40:51 +01:00
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ${VOLUMES_PATH}/heimdall:/config
expose:
- "80"
networks:
- web
labels:
- "traefik.enable=true"
2022-03-03 15:36:41 +01:00
- "traefik.http.routers.heimdall.rule=Host(`dashboard.${DOMAIN}`)"
2021-01-09 20:40:51 +01:00
- "traefik.http.routers.heimdall.entrypoints=web"
- "traefik.http.services.heimdall.loadbalancer.server.port=80"
2022-08-21 18:38:12 +02:00
- "docker.group=dashboard"
2021-01-09 20:40:51 +01:00
restart: unless-stopped
networks:
web:
external: true
2022-08-21 18:38:12 +02:00