Heimdall Updated

This commit is contained in:
2024-08-08 13:08:07 -07:00
parent 2fdc04fcf5
commit 2c83fa7d02
4 changed files with 36 additions and 34 deletions
+15
View File
@@ -0,0 +1,15 @@
# heimdall
Last Updated: Thu August 08, 2024 12:50:47 PDT
## Overview
DockerHub: https://hub.docker.com/r/linuxserver/heimdall
Offical Website: https://heimdall.site/
Proxy Port: 80
## notes
For https include: FORCE_HTTPS=true
TODO: where is domain base path set?
+6 -34
View File
@@ -1,40 +1,12 @@
---
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
#
###########################################################################################################################
version: '3.8'
services:
heimdall:
image: linuxserver/heimdall:${VERSION:-latest}
image: ${HEIMDALL_IMAGE:-linuxserver/heimdall:latest}
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- PGID=${HEIMDALL_PGID:-1000}
- PUID=${HEIMDALL_PUID:-1000}
- TZ=${TZ:-America/Vancouver}
volumes:
- ./data/heimdall:/config
restart: unless-stopped
#ports:
# - "${PORT:-80}:80"
- ${VOL_PATH:-./data}/heimdall:/config
+7
View File
@@ -0,0 +1,7 @@
version: '3.4'
services:
heimdall:
extends:
file: ${COOKBOOK}/heimdall/docker-compose.yml
service: heimdall
+8
View File
@@ -0,0 +1,8 @@
TZ=America/Vancouver
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# heimdall
HEIMDALL_IMAGE=linuxserver/heimdall:latest
HEIMDALL_PGID=1000
HEIMDALL_PUID=1000
VOL_PATH=/var/lib/docker/volumes #HELP: volpath