mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-22 16:13:20 +01:00
Merge pull request #82 from cardinalit/v2.2.x
Fix when presentation after recording unable to delete and change access rights
This commit is contained in:
commit
5f8ebb4458
12
.gitignore
vendored
12
.gitignore
vendored
@ -1,2 +1,14 @@
|
||||
# IDEA generated
|
||||
.idea
|
||||
|
||||
# OS generated
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
|
||||
# Tmp files
|
||||
*.swp
|
||||
*.log
|
||||
|
||||
# App generated
|
||||
.env
|
||||
postgres-data
|
||||
|
@ -73,12 +73,20 @@ RUN cd /usr/bin \
|
||||
&& touch /var/log/bigbluebutton/bbb-web.log
|
||||
|
||||
# create user
|
||||
# the ID should matcht the one creating the files in `core`
|
||||
# the ID should match the one creating the files in `core`
|
||||
RUN groupadd -g 998 bigbluebutton && useradd -m -u 998 -g bigbluebutton bigbluebutton
|
||||
# change owner
|
||||
# https://github.com/alangecker/bigbluebutton-docker/issues/63
|
||||
RUN chown -R 998:998 /usr/local/bigbluebutton /var/log/bigbluebutton
|
||||
|
||||
COPY bigbluebutton.yml /usr/local/bigbluebutton/core/scripts/bigbluebutton.yml.tmpl
|
||||
ADD log-collector.py /log-collector.py
|
||||
ADD entrypoint.sh /entrypoint.sh
|
||||
|
||||
# change user before entrypoint
|
||||
# to set user rights for all generated videos
|
||||
USER bigbluebutton
|
||||
|
||||
ENTRYPOINT dockerize \
|
||||
-template /usr/local/bigbluebutton/core/scripts/bigbluebutton.yml.tmpl:/usr/local/bigbluebutton/core/scripts/bigbluebutton.yml \
|
||||
/entrypoint.sh
|
@ -1,4 +1,4 @@
|
||||
bbb_version: '2.2.23'
|
||||
bbb_version: '2.2.30'
|
||||
raw_audio_src: /var/freeswitch/meetings
|
||||
raw_video_src: /usr/share/red5/webapps/video/streams
|
||||
kurento_video_src: /var/kurento/recordings
|
||||
|
Loading…
Reference in New Issue
Block a user