mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 13:51:51 +00:00

* feat: make update script fail if merge conflict * stop on first error with bash command --------- Co-authored-by: Almeida <github@almeidx.dev>
11 lines
240 B
Bash
Executable file
11 lines
240 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
echo Updating Zeppelin...
|
|
|
|
docker compose -f docker-compose.production.yml stop
|
|
git pull
|
|
docker compose -f docker-compose.production.yml build
|
|
docker compose -f docker-compose.production.yml up -d
|
|
|
|
echo Update finished!
|