27 lines
547 B
Bash
Executable file
27 lines
547 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Abort on first error
|
|
set -e
|
|
|
|
TAG="$1"
|
|
|
|
if [[ -z "$TAG" ]]; then
|
|
echo
|
|
echo "Error: please provide a version as docker image tag as first argument, e.g.:"
|
|
echo "./deploy.sh 1.0.0"
|
|
echo
|
|
echo "You can check the currently deployed tag with"
|
|
echo 'docker ps --format "{{.Names}}: {{.Image}}"'
|
|
echo
|
|
exit 1
|
|
fi
|
|
|
|
# Use our tag for docker-compose
|
|
export DEPLOY_TAG="$TAG"
|
|
|
|
# Pull the latest image
|
|
docker pull registry.greenbaum.cloud/pub_solar/miom.space:"$DEPLOY_TAG"
|
|
|
|
# Deploy on Greenbaum Cloud
|
|
docker-compose up -d
|