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

Production containers now copy the Zeppelin source files at build-time rather than using a shared volume. This means fewer permission issues and backend/dashboard builds only have to run once at build-time, not every time the containers are started. Docs in PRODUCTION.md have been updated accordingly.
10 lines
233 B
Bash
Executable file
10 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
|
|
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!
|