Merge pull request #64 from alangecker/develop

Release v2.2.27-1
This commit is contained in:
chandi 2020-10-14 12:16:04 +02:00 committed by GitHub
commit 615e1fcc07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 5 deletions

View File

@ -2,7 +2,7 @@ version: '3.6'
services:
prometheus-exporter:
image: greenstatic/bigbluebutton-exporter:v0.5.1
image: greenstatic/bigbluebutton-exporter:v0.5.2
restart: unless-stopped
environment:
API_BASE_URL: http://10.7.7.1:8080/bigbluebutton/api/

View File

@ -219,6 +219,16 @@ allowModsToUnmuteUsers=false
# Saves meeting events even if the meeting is not recorded
keepEvents=false
# Timeout (millis) to remove a joined user after her/his left event without a rejoin
# e.g. regular user left event
# Default 60s
usersTimeout=60000
# Timeout (millis) to remove users that called the enter API but did not join
# e.g. user's client hanged between the enter call and join event
# Default 45s
enteredUsersTimeout=45000
#----------------------------------------------------
# This URL is where the BBB client is accessible. When a user sucessfully
# enters a name and password, she is redirected here to load the client.

View File

@ -1,4 +1,4 @@
FROM etherpad/etherpad:1.8.4
FROM etherpad/etherpad:1.8.6
USER root

View File

@ -14,7 +14,7 @@ USER meteor
ENV METEOR_VERSION 1.8.1
RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh
ENV TAG v2.2.26
ENV TAG v2.2.27
RUN cd ~ \
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \
&& mv ~/bigbluebutton-html5 ~/source \
@ -51,4 +51,4 @@ USER meteor
ENTRYPOINT ["/entrypoint.sh"]
# lets set the tag again, so that it is include in the image for later version retrieval
ENV TAG v2.2.24
ENV TAG v2.2.27

View File

@ -40,7 +40,7 @@ RUN mkdir -p \
/var/log/bigbluebutton \
/var/log/bigbluebutton/presentation
ENV TAG v2.2.26
ENV TAG v2.2.27
# add bbb-record-core (lib, scripts and Gemfile)
RUN cd /usr/local/bigbluebutton/core \