From 8fc3efac78c401db91989eefa05c6dcdd7785f72 Mon Sep 17 00:00:00 2001 From: Moroine Bentefrit Date: Fri, 19 Sep 2025 14:07:51 +0000 Subject: [PATCH] fix: install behind a proxy (#3944) Updated the s3cmd installation command to include proxy environment variables. --- install/bootstrap-s3-nodestore.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/bootstrap-s3-nodestore.sh b/install/bootstrap-s3-nodestore.sh index a41fab4..15aec23 100644 --- a/install/bootstrap-s3-nodestore.sh +++ b/install/bootstrap-s3-nodestore.sh @@ -1,7 +1,7 @@ echo "${_group}Bootstrapping seaweedfs (node store)..." $dc up --wait seaweedfs postgres -$dc exec seaweedfs apk add --no-cache s3cmd +$dc exec -e "http_proxy=${http_proxy:-}" -e "https_proxy=${https_proxy:-}" -e "no_proxy=${no_proxy:-}" seaweedfs apk add --no-cache s3cmd $dc exec seaweedfs mkdir -p /data/idx/ s3cmd="$dc exec seaweedfs s3cmd"