Docker files for BigBlueButton
Go to file
2024-11-28 14:33:30 +01:00
.cache bbb-graphql-middleware dev mode 2024-11-25 17:50:15 +01:00
conf freeswitch: SIP dial in support 2024-11-28 14:33:30 +01:00
data bbb3.0: graphql container, postgres with multiple db, repo updates 2024-01-07 23:44:54 +01:00
docs script for instant development mode 2023-12-08 12:48:01 +01:00
mod freeswitch: SIP dial in support 2024-11-28 14:33:30 +01:00
repos v3.0.0-beta.5: recording via bbb-webrtc-recorder and etherpad export 2024-11-24 21:26:31 +01:00
scripts freeswitch: SIP dial in support 2024-11-28 14:33:30 +01:00
.gitignore .gitignore: conf/bbb-html5.yml 2024-11-24 19:14:56 +01:00
.gitmodules v3.0.0-beta.5: recording via bbb-webrtc-recorder and etherpad export 2024-11-24 21:26:31 +01:00
CHANGELOG.md updating docs for release v2.7.3 2023-12-08 12:24:37 +01:00
dev.env bbb-graphql-middleware dev mode 2024-11-25 17:50:15 +01:00
docker-compose.tmpl.yml freeswitch: SIP dial in support 2024-11-28 14:33:30 +01:00
LICENSE Initial commit 2017-10-27 14:57:35 -04:00
README.md v3.0.0-beta.5: basic working functionality 2024-11-24 16:30:49 +01:00
sample.env lets encrypt: email required, remove staging flag 2024-11-28 13:04:33 +01:00

bbb-docker-banner

📦 BigBlueButton 3.0 Docker

Version: 3.0.0-beta.5 | Changelog | Issues | Upgrading | Development

Features

  • Easy installation
  • Greenlight included
  • TURN server included
  • Fully automated HTTPS certificates
  • Full IPv6 support
  • Runs on any major linux distributon (Debian, Ubuntu, CentOS,...)

Requirements

  • 4GB of RAM
  • Linux (it will not work under Windows/WSL)
  • Root access (bbb-docker uses host networking, so it won't work with Kubernetes, any "CaaS"-Service, etc.)
  • Public IPv4 (expect issues with a firewall / NAT)
  • firewall allows internal networking (e.g. for ufw: ufw allow 10.7.7.0/24)

Install

  1. Ensure the requirements above are fulfilled (it really doesn't work without them)
  2. Install docker-ce & docker-compose-plugin
    1. follow instructions
    2. Ensure docker works with $ docker run hello-world
    3. Ensure you use a docker version ≥ 23.0 : $ docker --version
  3. Clone this repository
    $ git clone https://github.com/bigbluebutton/docker.git bbb-docker
    $ cd bbb-docker
    
    # use the more stable main branch (sometimes older)
    $ git checkout main 
    
  4. Run setup:
    $ ./scripts/setup
    
  5. (optional) Make additional configuration adjustments
    $ nano .env
    # always recreate the docker-compose.yml file after making any changes
    $ ./scripts/generate-compose
    
  6. Start containers:
    $ docker compose up -d --no-build
    
  7. If you use greenlight, you can create an admin account with:
    $ docker compose exec greenlight bundle exec rake admin:create
    

Further How-To's