docker/docker-compose.yml

33 lines
1.3 KiB
YAML
Raw Normal View History

2019-12-09 04:34:03 +01:00
version: '2'
services:
2020-04-09 02:11:32 +02:00
bbb:
image: bbb
2019-12-09 04:34:03 +01:00
privileged: true
2020-04-09 02:11:32 +02:00
hostname: meet.livingutopia.org
2019-12-09 04:34:03 +01:00
cap_add:
- NET_ADMIN
2020-04-09 02:11:32 +02:00
- SYS_NICE # for realtime scheduling
2019-12-09 04:34:03 +01:00
environment:
- container=docker
tmpfs:
- /run
- /run/lock
2020-04-08 06:36:27 +02:00
- /tmp:exec,mode=777
2019-12-09 04:34:03 +01:00
volumes:
2020-04-09 02:11:32 +02:00
- ./setup.sh:/opt/docker-bbb/setup.sh
- ./mod/freeswitch/vars.xml:/opt/freeswitch/conf/vars.xml
- ./mod/freeswitch/external.xml:/opt/freeswitch/conf/sip_profiles/external.xml
- ./mod/nginx/sip.nginx:/etc/bigbluebutton/nginx/sip.nginx
- ./mod/nginx/bigbluebutton:/etc/nginx/sites-available/bigbluebutton
- ./mod/html5/systemd_start.sh:/usr/share/meteor/bundle/systemd_start.sh
- ./mod/html5/config.yml:/usr/share/meteor/bundle/programs/server/assets/app/config/settings.yml
- ./mod/web/override.conf:/etc/systemd/system/bbb-web.service.d/override.conf
- ./mod/web/bigbluebutton.properties:/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties
- ./mod/kurento/WebRtcEndpoint.conf.ini:/etc/kurento/modules/kurento/WebRtcEndpoint.conf.ini
- ./mod/bbb-webrtc-sfu/config.yml:/usr/local/bigbluebutton/bbb-webrtc-sfu/config/default.yml
- ./rc.local:/etc/rc.local
2019-12-09 04:34:03 +01:00
security_opt:
- seccomp:unconfined
2020-04-09 02:11:32 +02:00
network_mode: host