docker/docs/upgrading.md

28 lines
851 B
Markdown
Raw Permalink Normal View History

# How To Upgrade bbb-docker
2023-03-21 14:03:03 +01:00
### Upgrading from `v2.5.x`
2023-03-21 14:03:03 +01:00
- *Breaking change:* Greenlight got fully rewritten
* it is starting as a fresh installation. you can migrate your data with `./scripts/greenlight-migrate-v2-v3`
* some greenlight settings under `.env` have changed. compare your version with `sample.env`
* it is now served directly under `/` and not in `/b`. If you use an reverse proxy not included in this repo, ensure to update your config accordingly!
apart from that follow the guide below.
### from `v2.6.x` or within `v2.7.x`
2021-04-16 13:46:54 +02:00
#### Backup
if you use greenlight, create a database backup first
```bash
docker exec -t docker_postgres_1 pg_dumpall -c -U postgres > /root/greenlight_`date +%d-%m-%Y"_"%H_%M_%S`.sql
```
2021-04-16 13:46:54 +02:00
#### Upgrading
```bash
# upgrade!
./scripts/upgrade
# restart updated services
2023-05-07 11:07:09 +02:00
docker compose up -d
```