mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-21 15:43:09 +01:00
Docker files for BigBlueButton
c4daf5d97a
In order to process a phonecall correctly freeswitch requires the extension field in the sip_profiles file. The Value has to be set to the phonenumber given to you by sipgate / your provider. See https://github.com/bigbluebutton/bigbluebutton.github.io/blob/master/_posts/2019-02-14-customize.md#add-a-phone-number-to-the-conference-bridge for reference. |
||
---|---|---|
bbb-webrtc-sfu@400fe636e6 | ||
conf | ||
docs | ||
mod | ||
scripts | ||
.gitignore | ||
.gitmodules | ||
docker-compose.coturn.yml | ||
docker-compose.demo.yml | ||
docker-compose.greenlight.yml | ||
docker-compose.https.yml | ||
docker-compose.prometheus.yml | ||
docker-compose.webhooks.yml | ||
docker-compose.yml | ||
LICENSE | ||
README.md | ||
sample.env |
BigBlueButton Docker
Features
- Easy installation
- Greenlight included
- TURN server included
- Fully automated HTTPS certificates
- Runs on almost any major linux distributon (Debian, Ubuntu, CentOS,...)
- Full IPv6 support
Install
- Install docker-ce & docker-compose
- follow instructions
- Ensure docker works with
$ docker run hello-world
- Install docker-compose: https://docs.docker.com/compose/install/
- Ensure docker-compose works:
$ docker-compose --version
- 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
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.