2017-10-27 21:01:25 +02:00
# Overview
2018-06-07 13:28:44 +02:00
This repository contains the scripts create a single docker container running BigBlueButton.
2017-10-27 21:01:25 +02:00
2018-06-07 13:28:44 +02:00
To run BigBlueButton in Docker, run the command
2017-10-27 22:24:21 +02:00
~~~
2018-06-07 13:28:44 +02:00
docker run -p 80:80/tcp -p 1935:1935/tcp -p 5066:5066/tcp -p 16384-16484:16384-16484/udp -p 2202:2202 --cap-add=NET_ADMIN --name bigbluebutton bigbluebutton/bigbluebutton -h < YOUR_HOST_IP >
2017-10-27 22:24:21 +02:00
~~~
Make sure you provide the host IP at the end of the command. This will take some time to pull the image from Docker hub.
2018-06-07 13:28:44 +02:00
For details see the [setup instructions ](http://docs.bigbluebutton.org/labs/docker.html ).
2017-10-27 22:24:21 +02:00
Once running, you can navigate to `http://<YOUR_HOST_IP>` to access your BigBlueButton server.
2017-10-27 22:44:16 +02:00
2018-06-07 13:28:44 +02:00
## Future Plans
2017-10-27 22:44:16 +02:00
2018-06-07 13:28:44 +02:00
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.
2017-10-27 22:44:16 +02:00
2018-06-07 13:28:44 +02:00
Still, it good step towards separating BigBlueButton into individual components for running under docker-compose or kubernetes.