Files
docker-compose-cookbooks/heimdall/docker-compose.yml
T
nick 70bfb9a907 Minor Update
* updated readme (needs more work)
* heimdall is great
* added jellyfin
2024-01-11 22:28:50 -08:00

39 lines
896 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
#
# 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:/config
restart: unless-stopped
#ports:
# - "${PORT:-80}:80"