- Установлен 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>
29 lines
No EOL
850 B
Docker
29 lines
No EOL
850 B
Docker
ARG TAG_ETHERPAD
|
|
FROM etherpad/etherpad:$TAG_ETHERPAD
|
|
|
|
USER root
|
|
|
|
RUN apk add git curl
|
|
|
|
USER etherpad
|
|
|
|
RUN pnpm run plugins i \
|
|
ep_disable_chat@0.0.10 \
|
|
ep_auth_session@1.1.1 \
|
|
--github \
|
|
mconf/ep_cursortrace#56fb8c2b211cdda4fc8715ec99e1cb7b7d9eb851 \
|
|
mconf/ep_pad_ttl#360136cd38493dd698435631f2373cbb7089082d \
|
|
mconf/ep_redis_publisher#2b6e47c1c59362916a0b2961a29b259f2977b694
|
|
|
|
|
|
# add skin from git submodule
|
|
COPY --chown=etherpad:0 --from=skin / /opt/etherpad-lite/src/static/skins/bigbluebutton
|
|
|
|
# add plugin from git submodule
|
|
COPY --chown=etherpad:0 --from=plugin / /ep_bigbluebutton_patches
|
|
RUN pnpm run plugins i --path /ep_bigbluebutton_patches
|
|
|
|
COPY settings.json /opt/etherpad-lite/settings.json
|
|
COPY etherpad-export.sh /etherpad-export.sh
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"] |