homeserver/heimdall/docker-compose.yaml

29 lines
631 B
YAML

version: "3.3"
services:
app:
image: linuxserver/heimdall:version-2.2.2
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(`heimdall.${DOMAIN}`)"
- "traefik.http.routers.heimdall.entrypoints=web"
- "traefik.http.services.heimdall.loadbalancer.server.port=80"
- "docker.group=selfhost"
- "docker.group=heimdall"
restart: unless-stopped
networks:
web:
external: true