1 Commits

Author SHA1 Message Date
chandi
c9079a8c68 BBB 2.5.3 2022-07-15 12:51:30 +02:00
14 changed files with 29 additions and 37 deletions

View File

@@ -1,10 +1,7 @@
# Changelog # Changelog
## Unreleased ## Unreleased
- BBB 2.5.3 @alangecker
## Release v2.5.8 (2022-11-06)
- BBB 2.5.8 @alangecker [#238](https://github.com/bigbluebutton/docker/pull/238)
- recordings: fix for missing ffmpeg filter @alangecker [#235](https://github.com/bigbluebutton/docker/issues/235) [#230](https://github.com/bigbluebutton/docker/pull/230)
## Release v2.5.0 (2022-06-10) ## Release v2.5.0 (2022-06-10)
- BigBlueButton v2.5 @alangecker [#207](https://github.com/bigbluebutton/docker/pull/207) - BigBlueButton v2.5 @alangecker [#207](https://github.com/bigbluebutton/docker/pull/207)

View File

@@ -3,7 +3,7 @@
# 📦 BigBlueButton 2.5 Docker # 📦 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 ## Features
- Easy installation - Easy installation

View File

@@ -156,7 +156,7 @@ services:
etherpad: etherpad:
build: mod/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 restart: unless-stopped
depends_on: depends_on:
- redis - redis
@@ -193,7 +193,7 @@ services:
mongodb: mongodb:
container_name: bbb-mongodb container_name: bbb-mongodb
image: mongo:4.4 image: mongo:5.0
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./mod/mongo/mongod.conf:/etc/mongod.conf - ./mod/mongo/mongod.conf:/etc/mongod.conf
@@ -210,7 +210,7 @@ services:
# TODO: remove as soon as not required anymore by webrtc-sfu # TODO: remove as soon as not required anymore by webrtc-sfu
kurento: kurento:
image: kurento/kurento-media-server:6.18 image: kurento/kurento-media-server:6.17
restart: unless-stopped restart: unless-stopped
network_mode: host network_mode: host
volumes: volumes:
@@ -288,8 +288,6 @@ services:
jodconverter: jodconverter:
build: mod/jodconverter build: mod/jodconverter
image: alangecker/bbb-docker-jodconverter:latest image: alangecker/bbb-docker-jodconverter:latest
security_opt:
- 'no-new-privileges:true'
restart: unless-stopped restart: unless-stopped
tmpfs: tmpfs:
- /tmp - /tmp
@@ -303,7 +301,7 @@ services:
periodic: periodic:
build: mod/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 restart: unless-stopped
depends_on: depends_on:
- mongodb - mongodb
@@ -389,7 +387,7 @@ services:
{{ if isTrue .Env.ENABLE_COTURN }} {{ if isTrue .Env.ENABLE_COTURN }}
# coturn # coturn
coturn: coturn:
image: coturn/coturn:4.6-alpine image: coturn/coturn:4.5-alpine
restart: unless-stopped restart: unless-stopped
command: command:
- "--external-ip=${EXTERNAL_IPv4}/${EXTERNAL_IPv4}" - "--external-ip=${EXTERNAL_IPv4}/${EXTERNAL_IPv4}"

View File

@@ -24,6 +24,6 @@ cd /usr/share/bbb-web/
dockerize \ dockerize \
-template /etc/bigbluebutton/bbb-web.properties.tmpl:/etc/bigbluebutton/bbb-web.properties \ -template /etc/bigbluebutton/bbb-web.properties.tmpl:/etc/bigbluebutton/bbb-web.properties \
-template /usr/share/bbb-web/WEB-INF/classes/spring/turn-stun-servers.xml.tmpl:/usr/share/bbb-web/WEB-INF/classes/spring/turn-stun-servers.xml \ -template /usr/share/bbb-web/WEB-INF/classes/spring/turn-stun-servers.xml.tmpl:/usr/share/bbb-web/WEB-INF/classes/spring/turn-stun-servers.xml \
gosu bigbluebutton java -Dgrails.env=prod -Dserver.address=0.0.0.0 -Dserver.port=8090 -Dspring.main.allow-circular-references=true -Xms384m -Xmx384m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/bigbluebutton/diagnostics -cp WEB-INF/lib/*:/:WEB-INF/classes/:. org.springframework.boot.loader.WarLauncher gosu bigbluebutton java -Dgrails.env=prod -Dserver.address=0.0.0.0 -Dserver.port=8090 -Xms384m -Xmx384m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/bigbluebutton/diagnostics -cp WEB-INF/lib/*:/:WEB-INF/classes/:. org.springframework.boot.loader.WarLauncher

View File

@@ -39,7 +39,7 @@
<!-- Domain (for presence) --> <!-- Domain (for presence) -->
<param name="domain" value="$${domain}"/> <param name="domain" value="$${domain}"/>
<!-- Sample Rate--> <!-- Sample Rate-->
<param name="rate" value="48000"/> <param name="rate" value="8000"/>
<!-- Number of milliseconds per frame --> <!-- Number of milliseconds per frame -->
<param name="interval" value="20"/> <param name="interval" value="20"/>
<!-- Energy level required for audio to be sent to the other users --> <!-- Energy level required for audio to be sent to the other users -->

View File

@@ -2,6 +2,7 @@
<modules> <modules>
<!-- Loggers (I'd load these first) --> <!-- Loggers (I'd load these first) -->
<load module="mod_console"/> <load module="mod_console"/>
<load module="mod_logfile"/>
<!-- Event Handlers --> <!-- Event Handlers -->
<load module="mod_event_socket"/> <load module="mod_event_socket"/>

View File

@@ -21,7 +21,7 @@ RUN sed -i "s/VERSION/$TAG_HTML5/" /app/bundle/programs/web.browser/head.html \
# ------------------------------ # ------------------------------
FROM node:14.21.1-alpine FROM node:14.19.1-alpine
RUN addgroup -g 2000 meteor && \ RUN addgroup -g 2000 meteor && \
adduser -D -u 2001 -G meteor meteor && \ adduser -D -u 2001 -G meteor meteor && \

View File

@@ -6,12 +6,12 @@ export MONGO_OPLOG_URL=mongodb://10.7.7.6/local
export MONGO_URL=mongodb://10.7.7.6/meteor export MONGO_URL=mongodb://10.7.7.6/meteor
export ROOT_URL=http://127.0.0.1/html5client export ROOT_URL=http://127.0.0.1/html5client
export NODE_ENV=production 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 BIND_IP=0.0.0.0
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
export INSTANCE_MAX=1 export INSTANCE_MAX=1
export ENVIRONMENT_TYPE=production export ENVIRONMENT_TYPE=production
export NODE_VERSION=node-v14.21.1-linux-x64 export NODE_VERSION=node-v14.19.1-linux-x64
export BBB_HTML5_LOCAL_SETTINGS=/app/bbb-html5.yml export BBB_HTML5_LOCAL_SETTINGS=/app/bbb-html5.yml
if [ "$DEV_MODE" == true ]; then if [ "$DEV_MODE" == true ]; then

View File

@@ -1,5 +1,5 @@
FROM ruby:2.7-slim-bullseye FROM ruby:2.7-slim-buster
# install apt dependencies # install apt dependencies
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \

View File

@@ -7,18 +7,13 @@
set -e set -e
cd "$(dirname "$0")/.." cd "$(dirname "$0")/.."
git submodule init
git submodule update
export $(cat tags.env | sed 's/#.*//g' | xargs) export $(cat tags.env | sed 's/#.*//g' | xargs)
function checkout { function checkout {
path=$1 path=$1
ref=$2 ref=$2
pushd $path pushd $path
git fetch
git checkout $ref git checkout $ref
echo ""
popd > /dev/null popd > /dev/null
} }

View File

@@ -17,7 +17,8 @@ else
echo "" echo ""
echo "# pull newest git submodules" echo "# pull newest git submodules"
./scripts/checkout-submodules git submodule init
git submodule update
echo "" echo ""
echo "# recreate docker-compose.yml" echo "# recreate docker-compose.yml"

View File

@@ -4,24 +4,24 @@
# https://gitlab.senfcall.de/senfcall-public/docker-bbb-build # https://gitlab.senfcall.de/senfcall-public/docker-bbb-build
BBB_BUILD_TAG=v2022-12-08-meteor-290 BBB_BUILD_TAG=v2022-03-30
# https://github.com/bigbluebutton/bigbluebutton # https://github.com/bigbluebutton/bigbluebutton
TAG_COMMON_MESSAGE=v2.5.10 TAG_COMMON_MESSAGE=v2.5.0
TAG_APPS_AKKA=v2.5.10 TAG_APPS_AKKA=v2.5.0
TAG_FSESL_AKKA=v2.5.10 TAG_FSESL_AKKA=v2.5.0
TAG_BBB_WEB=v2.5.11 TAG_BBB_WEB=v2.5.0
TAG_HTML5=v2.5.10 TAG_HTML5=v2.5.3
TAG_RECORDINGS=v2.5.10 TAG_RECORDINGS=v2.5.3
TAG_LEARNING_DASHBOARD=v2.5.10 TAG_LEARNING_DASHBOARD=v2.5.3
TAG_FS_CONFIG=v2.5.7 TAG_FS_CONFIG=v2.5.0
# individual git submodules # individual git submodules
# use `./scripts/checkout-submodules` to ensure, that the submodules # use `./scripts/checkout-submodules` to ensure, that the submodules
# match the provided tags here # match the provided tags here
TAG_WEBRTC_SFU=v2.8.7 TAG_WEBRTC_SFU=v2.8.5
TAG_WEBHOOKS=v2.6.0 TAG_WEBHOOKS=v2.6.0
TAG_PLAYBACK=v4.0.0 TAG_PLAYBACK=v4.0.0
TAG_PADS=v1.4.0 TAG_PADS=v1.2.2