Skip to content
Snippets Groups Projects
Verified Commit ebdd6211 authored by Martin Weise's avatar Martin Weise
Browse files

Merge branch 'release-1.8'

parents 24a76c5f 2c24c821
No related branches found
No related tags found
1 merge request!413Master
.s3cfg 0 → 100644
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
#!/bin/bash #!/bin/bash
# preset # preset
VERSION="1.8.2" APP_VERSION="1.8.2"
DOC_VERSION="1.8"
MIN_CPU=8 MIN_CPU=8
MIN_RAM=20 MIN_RAM=20
SKIP_CHECKS=${SKIP_CHECKS:-0} SKIP_CHECKS=${SKIP_CHECKS:-0}
...@@ -45,8 +46,8 @@ else ...@@ -45,8 +46,8 @@ else
fi fi
# environment # environment
echo "[🚀] Gathering environment for version ${VERSION} ..." echo "[🚀] Gathering environment for version ${APP_VERSION} ..."
curl -ksSL -o ./dist.tar.gz "https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/${VERSION}/dist.tar.gz" curl -ksSL -o ./dist.tar.gz "https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/${APP_VERSION}/dist.tar.gz"
tar xzfv ./dist.tar.gz tar xzfv ./dist.tar.gz
if [[ $DOWNLOAD_ONLY -eq 1 ]]; then if [[ $DOWNLOAD_ONLY -eq 1 ]]; then
...@@ -54,7 +55,7 @@ if [[ $DOWNLOAD_ONLY -eq 1 ]]; then ...@@ -54,7 +55,7 @@ if [[ $DOWNLOAD_ONLY -eq 1 ]]; then
exit 0 exit 0
fi fi
echo "[📦] Pulling images for version ${VERSION} ..." echo "[📦] Pulling images for version ${APP_VERSION} ..."
docker compose pull docker compose pull
echo "[🎉] Success!" echo "[🎉] Success!"
...@@ -68,4 +69,4 @@ echo "Then start the local deployment with:" ...@@ -68,4 +69,4 @@ echo "Then start the local deployment with:"
echo "" echo ""
echo " docker compose up -d" echo " docker compose up -d"
echo "" 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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment