homeserver/dashboard/docker-compose.yaml

29 lines
595 B
YAML
Raw Normal View History

2021-01-09 20:40:51 +01:00
version: "3.3"
services:
app:
2022-04-11 20:12:51 +02:00
image: linuxserver/heimdall:2.4.10
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