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