- Установлен 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>
13 lines
284 B
Docker
13 lines
284 B
Docker
ARG BBB_BUILD_TAG
|
|
FROM bigbluebutton/bbb-build:$BBB_BUILD_TAG
|
|
|
|
|
|
# use /tmp as home dir as writeable directory for whatever UID we get
|
|
ENV HOME /tmp
|
|
|
|
# allow all user to access .nvm in root
|
|
RUN chmod 755 /root
|
|
|
|
WORKDIR /app
|
|
COPY /entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT /entrypoint.sh
|