- Установлен BigBlueButton с Greenlight v3 frontend - Настроен SMTP через Microsoft 365 Relay (aiimpress-com0e.mail.protection.outlook.com:25) - Email отправка работает: noreply@ai-impress.com - Доступ: https://bbb.ai-impress.com - Настроена интеграция с Traefik для SSL - Включены: запись вебинаров (90 дней), webhooks для n8n, Prometheus экспорт - Локаль: русский язык (ru-RU) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1.2 KiB
1.2 KiB
How To Upgrade bbb-docker
Breaking changes v2.7.x -> v3.0.x
- A setup behind NAT does currently not work!
LETSENCRYPT_EMAILis now required in.envwhen used with the integrated HAProxy- the greenlight postgres database is now called
greenlightinstead ofgreenlight-v3
Breaking changes v2.6.x -> v2.7.x
- We use now Docker Compose V2
- make sure you have docker ≥ 23.0 installed (
$ docker -v) - update all usages of
docker-composetodocker composein your scripts
- make sure you have docker ≥ 23.0 installed (
Breaking changes v2.5.x -> v2.6.x
- 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
.envhave changed. compare your version withsample.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!
- it is starting as a fresh installation. you can migrate your data with
Backup
if you use greenlight, create a database backup first
docker exec -t docker_postgres_1 pg_dumpall -c -U postgres > /root/greenlight_`date +%d-%m-%Y"_"%H_%M_%S`.sql
Upgrading
# upgrade!
./scripts/upgrade
# restart updated services
docker compose up -d --no-build