3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-14 05:45:02 +00:00

build: refactor production containers

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.
This commit is contained in:
Dragory 2023-07-01 10:33:35 +00:00
parent b60a7fb145
commit b67b3c35b7
No known key found for this signature in database
8 changed files with 60 additions and 64 deletions

View file

@ -4,6 +4,7 @@ echo Updating Zeppelin...
docker compose -f docker-compose.production.yml stop
git pull
docker compose -f docker-compose.production.yml start
docker compose -f docker-compose.production.yml build
docker compose -f docker-compose.production.yml up -d
echo Update finished!