Docker files for BigBlueButton
Go to file
Fred Dixon 30f78ac7a4
Merge pull request #9 from capilkey/patch-1
Rewrite the RTP and SIP IPs correctly in vars.xml
2018-09-24 16:39:56 -04:00
mod Updates for Kurento Listen Only in HTML5 client 2018-08-31 09:10:10 -05:00
.travis.yml add travis ci 2018-07-13 14:52:14 -04:00
Dockerfile Fixed missing xmlstartlet 2018-09-24 11:27:12 -05:00
LICENSE Initial commit 2017-10-27 14:57:35 -04:00
README.md Fixed typing in docker run 2018-09-24 12:12:43 -04:00
restart.sh Added a restart.sh to quickly restart container for testing 2018-07-08 14:22:33 -04:00
setup.sh Rewrite the RTP and SIP IPs correctly in vars.xml 2018-09-24 15:53:13 -04:00
supervisord.conf Local changes 2018-07-28 22:40:33 -04:00

BigBlueButton Docker

Travis CI Docker Pulls

These are scripts to build a Docker that runs BigBlueButton with both the Flash and HTML5 client. To build the Docker container, run the command

docker build -t bigbluebutton .

Here we called the BigBlueButton container bigbluebutton. To run BigBlueButton in Docker, run the command

docker run --rm -p 80:80/tcp -p 443:443/tcp -p 1935:1935 -p 5066:5066 -p 3478:3478 -p 3478:3478/udp bigbluebutton -h <HOST_IP>

Make sure you provide the host IP of the server on which you run the docker command. Once running, you can navigate to http://<HOST_IP> to access your BigBlueButton server.

For details see the setup instructions.

Future Plans

Our goal was to allow developers to run BigBlueButton server with a single command. This Docker image is not meant for production use, but rather for testing and trying out BigBlueButton.

Still, it good step towards separating BigBlueButton into individual components for running under docker-compose or kubernetes.