docker/README.md
2020-04-13 15:51:33 +02:00

2.4 KiB

BigBlueButton Docker

Please note

  • Not well tested, can be still really buggy. Don't use for production!

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 container. either...
    • Most common setup: BigBlueButton with automatic HTTPS certificate retrieval and Greenlight
      $ docker-compose \
          -f docker-compose.yml \
          -f docker-compose.https.yml \
          -f docker-compose.greenlight.yml \
          up --detach
      
    • Individual parts:
      • BigBlueButton $ docker-compose up -d
      • HTTPS reverse proxy
        • $ docker-compose -f docker-compose.https.yml up -d
      • API demos
      • 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 support for recording
  • further separate bbb-core into individual container