2018-07-20 21:08:47 +02:00
# BigBlueButton Docker
2017-10-27 21:01:25 +02:00
2020-06-22 23:57:59 +02:00
## Features
- Easy installation
- Greenlight included
- TURN server included
- Fully automated HTTPS certificates
- Runs on almost any major linux distributon (Debian, Ubuntu, CentOS,...)
2020-07-13 17:40:55 +02:00
- Full IPv6 support
2020-06-22 23:57:59 +02:00
2020-04-12 16:02:14 +02:00
## Install
1. Install docker-ce & docker-compose
1. 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/
2. Ensure docker works with `$ docker run hello-world`
3. Install docker-compose: https://docs.docker.com/compose/install/
4. Ensure docker-compose works: `$ docker-compose --version`
5. Clone this repository
```sh
$ git clone --recurse-submodules https://github.com/alangecker/bigbluebutton-docker.git bbb-docker
$ cd bbb-docker
```
2020-06-06 14:39:54 +02:00
6. Run setup:
```bash
$ ./scripts/setup
```
7. Start containers:
```bash
$ ./scripts/compose up -d
```
8. If you use greenlight, you can create an admin account with:
```bash
$ ./scripts/compose exec greenlight bundle exec rake admin:create
```
2020-04-13 15:43:37 +02:00
2020-07-10 11:28:33 +02:00
## How-To's
- [Upgrade ](docs/upgrading.md )
- [Behind NAT ](docs/behind-nat.md )
2020-07-13 18:06:43 +02:00
- [Integration into an existing web server ](docs/existing-web-server.md )
2020-07-09 19:44:39 +02:00
2020-05-16 17:03:04 +02:00
## 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.