From af5cb35531134394de8da9ca5d3799ded8cb8c1a Mon Sep 17 00:00:00 2001 From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Sat, 7 Jan 2023 08:03:36 -0800 Subject: [PATCH] Also filter to only PAPERLESS_ variables --- docker/env-from-file.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/env-from-file.sh b/docker/env-from-file.sh index 057b5ed9a..3ef44d5af 100644 --- a/docker/env-from-file.sh +++ b/docker/env-from-file.sh @@ -14,7 +14,7 @@ do # Extract the name of the environment variable env_name=${line%%=*} # Check if it ends in "_FILE" - if [[ ${env_name} == *_FILE ]]; then + if [[ ${env_name} == PAPERLESS_*_FILE ]]; then # Extract the value of the environment env_value=${line#*=}