Files
docker-compose-cookbooks/heimdall/docker-compose.yml
T
2024-03-15 09:06:34 -07:00

41 lines
951 B
YAML

---
version: "3"
###########################################################################################################################
# Heimdall (Homepage)
#
# DockerHub: https://hub.docker.com/r/linuxserver/heimdall
# Offical Website: https://heimdall.site/
#
# SAMPLE .env
# VERSION=latest
# TZ=America/Vancouver
# PORT=8000
#
# NOTES
#
# Make sure your volume is set correctly.
# Ports don't need to be set if behind proxy
#
# Powered by sqlite in www directory (data)
#
# You can edit vol/www/.env
# For https include: FORCE_HTTPS=true
#
###########################################################################################################################
services:
heimdall:
image: linuxserver/heimdall:${VERSION:-latest}
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ:-America/Vancouver}
volumes:
- ./data/heimdall:/config
restart: unless-stopped
#ports:
# - "${PORT:-80}:80"