From 6486423e3727fcf2d2ca23a64da953af4803c7cd Mon Sep 17 00:00:00 2001 From: teutat3s Date: Thu, 31 Mar 2022 19:11:07 +0200 Subject: [PATCH] Update deploy helper script --- deploy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy.sh b/deploy.sh index f5fe22d..4b0ad50 100755 --- a/deploy.sh +++ b/deploy.sh @@ -18,14 +18,14 @@ fi # workaround for SSL: CERTIFICATE_VERIFY_FAILED error with docker-compose if [ -z "$CURL_CA_BUNDLE" ]; then - if [ ! -f ~/Downloads/cacert-2021-10-26.pem ]; then + if [ ! -f ~/Downloads/cacert-2022-03-29.pem ]; then echo echo "Couldn't find required CURL_CA_BUNDLE env variable..." - echo "Downloading https://curl.se/ca/cacert-2021-10-26.pem to ~/Downloads/cacert-2021-10-26.pem" + echo "Downloading https://curl.se/ca/cacert-2022-03-29.pem to ~/Downloads/cacert-2022-03-29.pem" echo - curl https://curl.se/ca/cacert-2021-10-26.pem -o ~/Downloads/cacert-2021-10-26.pem + curl https://curl.se/ca/cacert-2022-03-29.pem -o ~/Downloads/cacert-2022-03-29.pem fi - export CURL_CA_BUNDLE=~/Downloads/cacert-2021-10-26.pem + export CURL_CA_BUNDLE=~/Downloads/cacert-2022-03-29.pem fi # make sure we're using the local docker host for building our image @@ -39,7 +39,7 @@ docker login hub.greenbaum.cloud docker push hub.greenbaum.cloud/miom.space:"$TAG" # change DOCKER_HOST env var to remote docker host (Greenbaum's docker API) -eval "$(triton --account=pub_solar env)" +eval "$(triton --account=lev-1-pub_solar env)" # use our tag for docker-compose export DEPLOY_TAG="$TAG"