Deployment with docker compose #376

This commit is contained in:
Daniel Grams 2023-03-10 16:46:03 +01:00
parent 9efbf59e0d
commit 2028da2f7f
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,8 @@ docker compose up --force-recreate --detach
## Update app
Adjust `WEB_TAG` in .env if necessary.
```sh
./update.sh
```

View File

@ -2,5 +2,5 @@ set -e
docker compose pull web
docker compose stop web
docker compose run db-backup /backup.sh
docker compose exec db-backup /backup.sh
docker compose up --detach --force-recreate web