From 525bd2c69de4554d82b283a495f0a3c6924efc6e Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Wed, 15 Apr 2026 19:11:09 +0000 Subject: [PATCH] fixed port var for heimdall --- heimdall/compose.yaml | 2 +- heimdall/sample.env | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/heimdall/compose.yaml b/heimdall/compose.yaml index c0f9523..8749fc1 100644 --- a/heimdall/compose.yaml +++ b/heimdall/compose.yaml @@ -10,7 +10,7 @@ services: - PUID=${HEIMDALL_PUID:-1000} - TZ=${TZ:-America/Vancouver} ports: - - 8000:80 + - ${HEIMDALL_PORT:-8000}:80 networks: - proxy diff --git a/heimdall/sample.env b/heimdall/sample.env index e9598b6..1c936bd 100644 --- a/heimdall/sample.env +++ b/heimdall/sample.env @@ -3,4 +3,5 @@ HEIMDALL_RESTART=unless-stopped VOL_PATH=/data HEIMDALL_PGID=1000 HEIMDALL_PUID=1000 +HEIMDALL_PORT=8000 TZ=America/Vancouver \ No newline at end of file