Docker files for BigBlueButton
Go to file
chandi 35db4a408f fix for endless echo test connect modal
It seems like bbb-fsesl-akka uses the public IP to connect to Freeswitch ESL and gets rejected with
    mod_event_socket.c:2663 IP 77.145.44.15 Rejected by acl "loopback.custom"

This leads to an endless "Connecting to echo test" dialog, because Meteor waits for an VoiceCallStateEvtMsg event on redis which doesn't get emitted by bbb-fsesl-akka.
2020-04-13 15:33:08 +02:00
bbb-webrtc-sfu@e8c232f71c add bbb-webrtc-sfu as git submodule 2020-04-11 19:39:55 +02:00
mod fix for endless echo test connect modal 2020-04-13 15:33:08 +02:00
.gitignore created sample.env 2020-04-11 12:01:48 +02:00
.gitmodules add bbb-webrtc-sfu as git submodule 2020-04-11 19:39:55 +02:00
docker-compose.demo.yml added greenlight and api demos 2020-04-12 16:01:57 +02:00
docker-compose.greenlight.yml added greenlight and api demos 2020-04-12 16:01:57 +02:00
docker-compose.yml update redis and mongodb 2020-04-12 20:34:48 +02:00
LICENSE Initial commit 2017-10-27 14:57:35 -04:00
README.md fixes invalid docker-compose commands 2020-04-12 20:35:11 +02:00
sample.env fix for greenlight CSRF error ActionController::InvalidAuthenticityToken, due to wrong requesting url protocol 2020-04-13 14:51:55 +02:00

BigBlueButton Docker

Please note

  • Not well tested, can be still really buggy. Don't use for production!
  • Serves BBB on HTTP Port 8080. It is your responsibility to add a HTTPS reverse proxy

Install

  1. Install docker-ce & docker-compose
    1. follow instructions
    2. Ensure docker works with $ docker run hello-world
    3. Install docker-compose: https://docs.docker.com/compose/install/
    4. Ensure docker-compose works: $ docker-compose --version
  2. Clone this repository
    $ git clone --recurse-submodules https://github.com/alangecker/bigbluebutton-docker.git bbb-docker
    $ cd bbb-docker
    
  3. Create .env with $ cp sample.env .env
  4. Adjust the values in .env (don't forget to change the ETHERPAD_API_KEY, SHARED_SECRET and RAILS_SECRET!)
  5. Start BigBlueButton $ docker-compose up -d and wait ages until all images are built
  6. Optionally...
    • Start api demos
    • Start greenlight
      • $ docker-compose -f docker-compose.greenlight.yml up -d
      • Create an administrator account
        $ docker exec greenlight-v2 bundle exec rake admin:create
      • Access https://bbb.example.com/b

Note if you use a Firewall / NAT

Kurento binds somehow always to the external IP instead of the local one or 0.0.0.0. For that reason you need to add your external IP to your interface.

Temporary way (until next reboot)
$ ip addr add 144.76.97.34/32 dev ens3
Permanent way

Specific to your linux distribution. Use a search engine of your choice. ;)

Ports

Also don't forget to forward all necassary ports listed in http://docs.bigbluebutton.org/2.2/configure-firewall.html

Open Tasks

  • add optional https support via lets encrypt
  • add support for recording
  • further separate bbb-core into individual container