Heimdall - Application dashboard
Summary
Heimdall is a application dashboard and launcher, organising all your web services in a single application. The documentation canbe found at linuxserver/Heimdall.
Installation via docker-compose behind traefik proxy
heimdall:
image: linuxserver/heimdall
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
networks:
- traefik
volumes:
- /path/to/config:/config
labels:
- "traefik.enable=true"
- "traefik.http.routers.heimdall.rule=Host(`heimdall.domain.com`)"
- "traefik.http.routers.heimdall.entrypoints=websecure"
- "traefik.http.routers.heimdall.tls=true"
- "traefik.http.services.heimdall.loadBalancer.server.port=80"
- "traefik.docker.network=traefik"