3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-07 19:17:19 +00:00
zeppelin/update.sh
2023-07-03 18:49:02 +04:00

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!