2021-04-17 18:23:19 +02:00
|
|
|
# 📦 BigBlueButton 2.3 Docker
|
2021-02-11 16:01:32 +01:00
|
|
|
|
2021-10-05 16:54:19 +02:00
|
|
|
Version: 2.3.14 | [Changelog](CHANGELOG.md) | [Issues](https://github.com/bigbluebutton/docker/issues)
|
2020-10-16 12:52:34 +02:00
|
|
|
|
2020-06-22 23:57:59 +02:00
|
|
|
## Features
|
|
|
|
- Easy installation
|
|
|
|
- Greenlight included
|
2021-06-01 17:51:55 +02:00
|
|
|
- TURN server included
|
2020-06-22 23:57:59 +02:00
|
|
|
- Fully automated HTTPS certificates
|
2020-07-13 17:40:55 +02:00
|
|
|
- Full IPv6 support
|
2021-02-11 16:01:32 +01:00
|
|
|
- Runs on any major linux distributon (Debian, Ubuntu, CentOS,...)
|
|
|
|
|
2021-03-28 13:25:09 +02:00
|
|
|
## What is not implemented yet
|
2021-02-11 16:01:32 +01:00
|
|
|
- bbb-lti
|
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/
|
2021-02-11 16:01:32 +01:00
|
|
|
4. Ensure docker-compose works and that you use a version ≥ 1.28 : `$ docker-compose --version`
|
|
|
|
2. Clone this repository
|
2020-04-12 16:02:14 +02:00
|
|
|
```sh
|
2021-04-30 22:59:10 +02:00
|
|
|
$ git clone -b main --recurse-submodules https://github.com/bigbluebutton/docker.git bbb-docker
|
2020-04-12 16:02:14 +02:00
|
|
|
$ cd bbb-docker
|
2021-05-12 11:53:44 +02:00
|
|
|
$ git submodule update --init
|
2020-04-12 16:02:14 +02:00
|
|
|
```
|
2021-02-11 16:01:32 +01:00
|
|
|
3. Run setup:
|
2020-06-06 14:39:54 +02:00
|
|
|
```bash
|
|
|
|
$ ./scripts/setup
|
|
|
|
```
|
2021-02-11 15:34:57 +01:00
|
|
|
4. (optional) Make additional configuration adjustments
|
2021-02-11 16:01:32 +01:00
|
|
|
```bash
|
2021-02-11 15:34:57 +01:00
|
|
|
$ nano .env
|
|
|
|
# always recreate the docker-compose.yml file after making any changes
|
|
|
|
$ ./scripts/generate-compose
|
2021-02-11 16:01:32 +01:00
|
|
|
```
|
2021-02-11 15:34:57 +01:00
|
|
|
5. Start containers:
|
2020-06-06 14:39:54 +02:00
|
|
|
```bash
|
2021-02-11 15:34:57 +01:00
|
|
|
$ docker-compose up -d
|
|
|
|
```
|
|
|
|
6. If you use greenlight, you can create an admin account with:
|
|
|
|
```bash
|
|
|
|
$ docker-compose exec greenlight bundle exec rake admin:create
|
2020-06-06 14:39:54 +02:00
|
|
|
```
|
2020-04-13 15:43:37 +02:00
|
|
|
|
2021-02-11 16:01:32 +01:00
|
|
|
## Further How-To's
|
|
|
|
- [Upgrading](docs/upgrading.md)
|
|
|
|
- [Running behind NAT](docs/behind-nat.md)
|
2020-07-30 14:13:46 +02:00
|
|
|
- [BBB-Docker Development](docs/development.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
|
|
|
|