2022-12-02 12:57:15 +01:00
|
|
|
# docker bigbluebutton
|
2023-12-30 16:49:37 +01:00
|
|
|
@TODO Database needs to be decoupled
|
|
|
|
|
2022-12-03 20:43:33 +01:00
|
|
|
Role to deploy [BigBlueButton](https://bigbluebutton.org/).
|
2022-12-02 12:57:15 +01:00
|
|
|
|
2023-04-02 21:10:44 +02:00
|
|
|
## maintanace
|
2022-12-03 20:43:33 +01:00
|
|
|
|
|
|
|
### cleanup
|
2022-12-02 21:18:55 +01:00
|
|
|
```bash
|
2024-01-13 20:12:39 +01:00
|
|
|
docker compose down -v
|
2022-12-03 20:43:33 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
### check container status
|
|
|
|
```bash
|
2024-01-13 20:12:39 +01:00
|
|
|
watch -n 2 "docker compose ps -a"
|
2022-12-02 21:18:55 +01:00
|
|
|
```
|
|
|
|
|
2023-11-27 18:57:29 +01:00
|
|
|
### database access
|
|
|
|
```bash
|
|
|
|
sudo docker-compose exec -it postgres psql -U postgres
|
|
|
|
```
|
|
|
|
|
2023-04-02 21:10:44 +02:00
|
|
|
## further information
|
2022-12-02 12:57:15 +01:00
|
|
|
- https://github.com/bigbluebutton/docker
|
2022-12-02 21:18:55 +01:00
|
|
|
- https://docs.bigbluebutton.org/greenlight/gl-install.html#setting-bigbluebutton-credentials
|
2023-08-22 23:56:56 +02:00
|
|
|
- https://goneuland.de/big-blue-button-mit-docker-und-traefik-installieren/
|
2023-04-02 21:10:44 +02:00
|
|
|
- https://github.com/docker/compose/issues/4799
|
|
|
|
- https://www.cyberciti.biz/faq/linux-command-to-remove-virtual-interfaces-or-network-aliases/
|
|
|
|
- https://www.cyberciti.biz/faq/linux-restart-network-interface/
|
2024-04-04 17:05:51 +02:00
|
|
|
- https://stackoverflow.com/questions/53347951/docker-network-not-found
|
|
|
|
- https://github.com/bigbluebutton/docker/issues/325
|