From 725f655fd9eab9a4c04896fa5cf39d2c1d287a60 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Sat, 8 Jul 2023 00:34:15 +0100 Subject: [PATCH] show fallback msg --- docker/start.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/start.sh b/docker/start.sh index bae9ec1..a2df2d9 100644 --- a/docker/start.sh +++ b/docker/start.sh @@ -1,7 +1,9 @@ #!/bin/sh +# TODO: add all the other fallback values for the other variables if [ -z "$MAX_UPLOAD_SIZE" ]; then MAX_UPLOAD_SIZE="8M" # Default fallback value + echo "MAX_UPLOAD_SIZE was not set, using default value of ${MAX_UPLOAD_SIZE}" fi echo "Checking if upload script exists in /var/www/html"