Heimdall Docker#
An Application dashboard and launcher
Docker#
docker run -d \
--name=heimdall \
-p 8080:80 \
-v $PWD/config:/config \
--restart unless-stopped \
linuxserver/heimdall
Docker Compose#
version: "2.1"
services:
heimdall:
image: lscr.io/linuxserver/heimdall:latest
container_name: heimdall
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- </path/to/appdata/config>:/config
ports:
- 80:80
- 443:443
restart: unless-stopped