From c07ed61989cf331fbf476c0cfe8dcae457b0126c Mon Sep 17 00:00:00 2001 From: "Md. Amdadul Bari Imad" Date: Tue, 10 Feb 2026 10:07:08 +0600 Subject: [PATCH] fix(entrypoint): remove dead HTTP URL check in volume filtering (#1761) Co-authored-by: houseme --- entrypoint.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f17bc757..d65c1ee7 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -57,15 +57,8 @@ process_data_volumes() { for vol in $VOLUME_LIST; do case "$vol" in - /*) - case "$vol" in - http://*|https://*) : ;; - *) DATA_VOLUMES="$DATA_VOLUMES $vol" ;; - esac - ;; - *) - : # skip non-local paths - ;; + /*) DATA_VOLUMES="$DATA_VOLUMES $vol" ;; + *) : ;; # skip non-absolute paths (including http(s):// URLs) esac done