mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
9 lines
179 B
Bash
Executable file
9 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo Updating Zeppelin...
|
|
|
|
docker-compose -f docker-compose.production.yml down
|
|
git pull
|
|
docker-compose -f docker-compose.production.yml -d up
|
|
|
|
echo Update finished!
|