diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/deploy.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bin/deploy.sh b/bin/deploy.sh new file mode 100755 index 0000000..31b8cdb --- /dev/null +++ b/bin/deploy.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env sh +# +# deploy.sh +# +# Deploy both services using Docker swarm. +# +# The registry domain is set in dotenv file but docker stack cannot read it. +# So a custom deploy script is required to load .env first. +# See: https://github.com/moby/moby/issues/29133 + +loadenvs() { + set -a && . ./.env && set +a +} + +error() { + printf "Error: stack name not defined.\n" + printf "Usage: sh deploy.sh your-stack-name\n" + exit 1 +} + +deploy() { + [ $# -ne 1 ] && error + loadenvs + docker stack deploy -c docker-compose.yml "$1" +} + +deploy "$@" |
