mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-07 19:17:19 +00:00
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!
|