fix: install behind a proxy (#3944)

Updated the s3cmd installation command to include proxy environment variables.
This commit is contained in:
Moroine Bentefrit 2025-09-19 14:07:51 +00:00 committed by GitHub
parent ec44e98813
commit 8fc3efac78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"