From 0a617f629235db57fdcd17d96ff714c39c5e3f84 Mon Sep 17 00:00:00 2001 From: Shish Date: Wed, 21 Feb 2024 17:04:57 +0000 Subject: [PATCH] [docker] only replace specific variables, fixes #1064 --- .docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/entrypoint.sh b/.docker/entrypoint.sh index 0ed83e6f..96486d12 100755 --- a/.docker/entrypoint.sh +++ b/.docker/entrypoint.sh @@ -12,7 +12,7 @@ chown shimmie:shimmie /app/data rm -rf /var/lib/unit/* -envsubst < /app/.docker/entrypoint.d/config.json.tmpl > /app/.docker/entrypoint.d/config.json +envsubst '$MAX_FILE_UPLOADS $UPLOAD_MAX_FILESIZE' < /app/.docker/entrypoint.d/config.json.tmpl > /app/.docker/entrypoint.d/config.json WAITLOOPS=5 SLEEPSEC=1