bigbluebutton-docker
bigbluebutton-docker copied to clipboard
merged into https://github.com/bigbluebutton/docker
trafficstars
BigBlueButton 2.2 Docker
Changelog | Issues
About the upcoming BigBlueButton 2.3
the v2.3.x branch became now develop at the official bigbluebutton/docker repository :tada:
- Maintaining both branches is currently requires too much effort for me (@alangecker), why I limit the work now on developing updates for bbb-docker 2.3
- Consider using 2.3.x for new installations, because 2.2.x (this repo) will become obsolete soon without a simple upgrading path.
Features
- Easy installation
- Greenlight included
- ~~TURN server included~~ (disabled due to blocked TURN ports)
- Fully automated HTTPS certificates
- Runs on almost any major linux distributon (Debian, Ubuntu, CentOS,...)
- Full IPv6 support
Install
- Important: I recommend using bbb-docker 2.3.x for new installations, because 2.2.x (this repo) will become obsolete soon without a simple upgrading path.
- Install docker-ce & docker-compose
- follow instructions
- Debian: https://docs.docker.com/engine/install/debian/
- CentOS: https://docs.docker.com/engine/install/centos/
- Fedora: https://docs.docker.com/engine/install/fedora/
- Ubuntu: https://docs.docker.com/engine/install/ubuntu/
- Ensure docker works with
$ docker run hello-world - Install docker-compose: https://docs.docker.com/compose/install/
- Ensure docker-compose works:
$ docker-compose --version
- follow instructions
- Clone this repository
$ git clone --recurse-submodules https://github.com/alangecker/bigbluebutton-docker.git bbb-docker $ cd bbb-docker - Run setup:
$ ./scripts/setup - Start containers:
$ ./scripts/compose up -d - If you use greenlight, you can create an admin account with:
$ ./scripts/compose exec greenlight bundle exec rake admin:create
How-To's
- Upgrade
- Behind NAT
- BBB-Docker Development
- Integration into an existing web server
Special thanks to
- @dkrenn, whos dockerized version (bigbluebutton#8858)(https://github.com/bigbluebutton/bigbluebutton/pull/8858) helped me a lot in understand and some configs.