diff --git a/.s3cfg b/.s3cfg new file mode 100644 index 0000000000000000000000000000000000000000..5d33284185529b63eca11f14dad396e3b3485cfb --- /dev/null +++ b/.s3cfg @@ -0,0 +1,8 @@ +access_key = seaweedfsadmin +secret_key = seaweedfsadmin +# Setup endpoint +host_base = http://localhost:9000 +host_bucket = dbrepo +use_https = False +# Enable S3 v4 signature APIs +signature_v2 = False \ No newline at end of file diff --git a/install.sh b/install.sh index 9d247ebe0aa4ec08b83762eeba9d48f627488210..2fcfead2867c19c792929623bad52ac863d2252a 100644 --- a/install.sh +++ b/install.sh @@ -1,7 +1,8 @@ #!/bin/bash # preset -VERSION="1.8.2" +APP_VERSION="1.8.2" +DOC_VERSION="1.8" MIN_CPU=8 MIN_RAM=20 SKIP_CHECKS=${SKIP_CHECKS:-0} @@ -45,8 +46,8 @@ else fi # environment -echo "[🚀] Gathering environment for version ${VERSION} ..." -curl -ksSL -o ./dist.tar.gz "https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/${VERSION}/dist.tar.gz" +echo "[🚀] Gathering environment for version ${APP_VERSION} ..." +curl -ksSL -o ./dist.tar.gz "https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/${APP_VERSION}/dist.tar.gz" tar xzfv ./dist.tar.gz if [[ $DOWNLOAD_ONLY -eq 1 ]]; then @@ -54,7 +55,7 @@ if [[ $DOWNLOAD_ONLY -eq 1 ]]; then exit 0 fi -echo "[📦] Pulling images for version ${VERSION} ..." +echo "[📦] Pulling images for version ${APP_VERSION} ..." docker compose pull echo "[🎉] Success!" @@ -68,4 +69,4 @@ echo "Then start the local deployment with:" echo "" echo " docker compose up -d" echo "" -echo "Read about next steps online: https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/${VERSION}/installation/#next-steps" +echo "Read about next steps online: https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/${DOC_VERSION}/installation/#next-steps"