miom.space/deploy.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

2022-01-16 18:32:04 +00:00
#!/usr/bin/env bash
# abort on first error
set -e
TAG="$1"
if [[ -z "$TAG" ]]; then
echo
2022-01-16 21:02:12 +00:00
echo "Error: please provide a docker image tag as first argument, e.g.:"
2022-01-16 18:32:04 +00:00
echo "./deploy.sh 1.0.0"
echo
2022-01-16 21:02:12 +00:00
echo "You can check the currently deployed tag with"
echo "docker ps -a"
echo
2022-01-16 18:32:04 +00:00
exit 1
fi
2022-01-16 21:02:12 +00:00
# workaround for SSL: CERTIFICATE_VERIFY_FAILED error with docker-compose
2022-01-16 18:32:04 +00:00
if [ -z "$CURL_CA_BUNDLE" ]; then
if [ ! -f ~/Downloads/cacert-2021-10-26.pem ]; then
curl https://curl.se/ca/cacert-2021-10-26.pem -o ~/Downloads/cacert-2021-10-26.pem
fi
export CURL_CA_BUNDLE=~/Downloads/cacert-2021-10-26.pem
fi
2022-01-16 21:02:12 +00:00
# make sure we're using the local docker host for building our image
2022-01-16 18:32:04 +00:00
eval "$(triton env --unset)"
# build the image locally
docker build --tag hub.greenbaum.cloud/miom.space:"$TAG" .
# login to Greenbaum's private docker registry and push the image
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)
2022-01-16 21:02:12 +00:00
eval "$(triton --account=pub_solar env)"
2022-01-16 18:32:04 +00:00
# use our tag for docker-compose
export DEPLOY_TAG="$TAG"
# deploy on Greenbaum Cloud
docker-compose up -d