mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-13 22:38:30 +02:00
Compare commits
1 Commits
fix-record
...
bbb-2.5.3
Author | SHA1 | Date | |
---|---|---|---|
c9079a8c68 |
@ -1,8 +1,7 @@
|
||||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
- BBB 2.5.8 @alangecker
|
||||
- recordings: fix for missing ffmpeg filter @alangecker [#235](https://github.com/bigbluebutton/docker/issues/235) [#230](https://github.com/bigbluebutton/docker/pull/230)
|
||||
- BBB 2.5.3 @alangecker
|
||||
|
||||
## Release v2.5.0 (2022-06-10)
|
||||
- BigBlueButton v2.5 @alangecker [#207](https://github.com/bigbluebutton/docker/pull/207)
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
# 📦 BigBlueButton 2.5 Docker
|
||||
|
||||
Version: 2.5.8 | [Changelog](CHANGELOG.md) | [Issues](https://github.com/bigbluebutton/docker/issues)
|
||||
Version: 2.5.3 | [Changelog](CHANGELOG.md) | [Issues](https://github.com/bigbluebutton/docker/issues)
|
||||
|
||||
## Features
|
||||
- Easy installation
|
||||
|
@ -136,7 +136,7 @@ services:
|
||||
context: mod/nginx
|
||||
args:
|
||||
TAG_LEARNING_DASHBOARD: {{ .Env.TAG_LEARNING_DASHBOARD }}
|
||||
image: alangecker/bbb-docker-nginx:1.21-{{ .Env.TAG_PLAYBACK }}-{{ .Env.TAG_LEARNING_DASHBOARD }}
|
||||
image: alangecker/bbb-docker-nginx:1.23-{{ .Env.TAG_PLAYBACK }}-{{ .Env.TAG_LEARNING_DASHBOARD }}
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- etherpad
|
||||
@ -156,7 +156,7 @@ services:
|
||||
|
||||
etherpad:
|
||||
build: mod/etherpad
|
||||
image: alangecker/bbb-docker-etherpad:1.8.18-3
|
||||
image: alangecker/bbb-docker-etherpad:1.8.18-2
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- redis
|
||||
@ -193,7 +193,7 @@ services:
|
||||
|
||||
mongodb:
|
||||
container_name: bbb-mongodb
|
||||
image: mongo:4.4
|
||||
image: mongo:5.0
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./mod/mongo/mongod.conf:/etc/mongod.conf
|
||||
@ -210,7 +210,7 @@ services:
|
||||
|
||||
# TODO: remove as soon as not required anymore by webrtc-sfu
|
||||
kurento:
|
||||
image: kurento/kurento-media-server:6.18
|
||||
image: kurento/kurento-media-server:6.17
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
volumes:
|
||||
@ -288,8 +288,6 @@ services:
|
||||
jodconverter:
|
||||
build: mod/jodconverter
|
||||
image: alangecker/bbb-docker-jodconverter:latest
|
||||
security_opt:
|
||||
- 'no-new-privileges:true'
|
||||
restart: unless-stopped
|
||||
tmpfs:
|
||||
- /tmp
|
||||
@ -303,7 +301,7 @@ services:
|
||||
|
||||
periodic:
|
||||
build: mod/periodic
|
||||
image: alangecker/bbb-docker-periodic:v2.5.0-rc.1
|
||||
image: alangecker/bbb-docker-periodic:v2.5.0
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- mongodb
|
||||
@ -389,7 +387,7 @@ services:
|
||||
{{ if isTrue .Env.ENABLE_COTURN }}
|
||||
# coturn
|
||||
coturn:
|
||||
image: coturn/coturn:4.6-alpine
|
||||
image: coturn/coturn:4.5-alpine
|
||||
restart: unless-stopped
|
||||
command:
|
||||
- "--external-ip=${EXTERNAL_IPv4}/${EXTERNAL_IPv4}"
|
||||
|
@ -39,7 +39,7 @@
|
||||
<!-- Domain (for presence) -->
|
||||
<param name="domain" value="$${domain}"/>
|
||||
<!-- Sample Rate-->
|
||||
<param name="rate" value="48000"/>
|
||||
<param name="rate" value="8000"/>
|
||||
<!-- Number of milliseconds per frame -->
|
||||
<param name="interval" value="20"/>
|
||||
<!-- Energy level required for audio to be sent to the other users -->
|
||||
|
@ -2,6 +2,7 @@
|
||||
<modules>
|
||||
<!-- Loggers (I'd load these first) -->
|
||||
<load module="mod_console"/>
|
||||
<load module="mod_logfile"/>
|
||||
|
||||
<!-- Event Handlers -->
|
||||
<load module="mod_event_socket"/>
|
||||
|
@ -6,7 +6,7 @@ export MONGO_OPLOG_URL=mongodb://10.7.7.6/local
|
||||
export MONGO_URL=mongodb://10.7.7.6/meteor
|
||||
export ROOT_URL=http://127.0.0.1/html5client
|
||||
export NODE_ENV=production
|
||||
export SERVER_WEBSOCKET_COMPRESSION='{"level":5, "maxWindowBits":13, "memLevel":7, "requestMaxWindowBits":13}'
|
||||
export SERVER_WEBSOCKET_COMPRESSION=0
|
||||
export BIND_IP=0.0.0.0
|
||||
export LANG=en_US.UTF-8
|
||||
export INSTANCE_MAX=1
|
||||
|
@ -13,7 +13,7 @@ RUN cd /bbb-playback && npm ci && npm run build
|
||||
|
||||
# --------------------
|
||||
|
||||
FROM nginx:1.21-alpine
|
||||
FROM nginx:1.23-alpine
|
||||
|
||||
COPY --from=builder /bbb-learning-dashboard/build /www/learning-analytics-dashboard/
|
||||
COPY --from=builder /bbb-playback/build /www/playback/presentation/2.3
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
FROM ruby:2.7-slim-bullseye
|
||||
FROM ruby:2.7-slim-buster
|
||||
|
||||
# install apt dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
|
Submodule mod/webrtc-sfu/bbb-webrtc-sfu updated: 19750a1727...b77714750f
18
tags.env
18
tags.env
@ -7,21 +7,21 @@
|
||||
BBB_BUILD_TAG=v2022-03-30
|
||||
|
||||
# https://github.com/bigbluebutton/bigbluebutton
|
||||
TAG_COMMON_MESSAGE=v2.5.7
|
||||
TAG_APPS_AKKA=v2.5.7
|
||||
TAG_FSESL_AKKA=v2.5.7
|
||||
TAG_BBB_WEB=v2.5.8
|
||||
TAG_HTML5=v2.5.7
|
||||
TAG_RECORDINGS=v2.5.7
|
||||
TAG_COMMON_MESSAGE=v2.5.0
|
||||
TAG_APPS_AKKA=v2.5.0
|
||||
TAG_FSESL_AKKA=v2.5.0
|
||||
TAG_BBB_WEB=v2.5.0
|
||||
TAG_HTML5=v2.5.3
|
||||
TAG_RECORDINGS=v2.5.3
|
||||
|
||||
TAG_LEARNING_DASHBOARD=v2.5.5
|
||||
TAG_FS_CONFIG=v2.5.7
|
||||
TAG_LEARNING_DASHBOARD=v2.5.3
|
||||
TAG_FS_CONFIG=v2.5.0
|
||||
|
||||
|
||||
# individual git submodules
|
||||
# use `./scripts/checkout-submodules` to ensure, that the submodules
|
||||
# match the provided tags here
|
||||
TAG_WEBRTC_SFU=v2.8.6
|
||||
TAG_WEBRTC_SFU=v2.8.5
|
||||
TAG_WEBHOOKS=v2.6.0
|
||||
TAG_PLAYBACK=v4.0.0
|
||||
TAG_PADS=v1.2.2
|
Reference in New Issue
Block a user