From 6bb02ff569147aaae886256a8338d31bc2bd7a13 Mon Sep 17 00:00:00 2001 From: "Re:My" Date: Wed, 18 Mar 2026 16:53:05 +0100 Subject: [PATCH] Update docker-entrypoint.sh --- scripts/docker-entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/docker-entrypoint.sh b/scripts/docker-entrypoint.sh index df22795..80a15e7 100755 --- a/scripts/docker-entrypoint.sh +++ b/scripts/docker-entrypoint.sh @@ -23,6 +23,8 @@ elif [ "${cmd}" == 'app' ]; then CONF_FILE="/etc/supervisor/conf.d/valhalla.conf" sed -i \ -e "s|%(ENV_MAX_CACHE_SIZE)s|${MAX_CACHE_SIZE}|g" \ + -e "s|%(ENV_PBF_LOCAL_PATH)s|${PBF_LOCAL_PATH}|g" \ + -e "s|%(ENV_PBF_URL)s|${PBF_URL}|g" \ -e "s|%(ENV_CONCURRENCY)s|${CONCURRENCY}|g" \ -e "s|%(ENV_HTTP_PROXY)s|${HTTP_PROXY}|g" \ -e "s|%(ENV_HTTPS_PROXY)s|${HTTPS_PROXY}|g" \