estimated reading time < 1 min
Here is the docker-compose file for heimdall, the great dashboard for you home htpc.
It also can be used to create an application in the Qnap Container-Station. (That’s how I use it)
--- version: '2.1' services: ############################################################################### # HEIMDALL # ############################################################################### heimdall: image: linuxserver/heimdall container_name: heimdall environment: - PUID=1000 - PGID=100 - TZ=Asia/Bangkok volumes: - /share/Container/container-data/heimdall/config:/config ports: - 8010:80 - 8043:443 restart: unless-stopped
Ensure that adapt the environment to your needs!.
Views: 40