docker/README.md

57 lines
1.8 KiB
Markdown
Raw Normal View History

2021-04-17 18:23:19 +02:00
# 📦 BigBlueButton 2.3 Docker
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
- 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
- Runs on any major linux distributon (Debian, Ubuntu, CentOS,...)
2021-03-28 13:25:09 +02:00
## What is not implemented yet
- 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/
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
$ 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
$ git submodule update --init
2020-04-12 16:02:14 +02:00
```
3. Run setup:
```bash
$ ./scripts/setup
```
4. (optional) Make additional configuration adjustments
```bash
$ nano .env
# always recreate the docker-compose.yml file after making any changes
$ ./scripts/generate-compose
```
5. Start containers:
```bash
$ 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-04-13 15:43:37 +02: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)