From b2e487a30fdfc6e385a409e052eda4cfb9a88e3e Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Wed, 17 Mar 2021 22:48:20 +0100
Subject: [PATCH] [Docker] Fix port assignment

---
 docker-startup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker-startup.sh b/docker-startup.sh
index eddb82ee2..7d7edb297 100755
--- a/docker-startup.sh
+++ b/docker-startup.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-HTTP_PORT=${HTTP_PORT:8000}
+HTTP_PORT=${HTTP_PORT:-8000}
 
 if [[ -z $ALEKSIS_secret_key ]]; then
     if [[ ! -e /var/lib/aleksis/secret_key ]]; then
-- 
GitLab