bunkerweb/examples/bigbluebutton/docker-compose.yml

77 lines
1.7 KiB
YAML
Raw Normal View History

2022-06-03 15:24:14 +00:00
# clone the repository https://github.com/bigbluebutton/docker into the root directory and run the following command: ./scripts/setup
# when executing the file ./scripts/setup do this:
# Should greenlight be included? (y/n): y
# Should an automatic HTTPS Proxy be included? (y/n): n
# ...
# Please enter the domain name: www.example.com (your domain name)
# after generating your bigbluebutton docker-compose.yml file, you can modify the following to add bunkerweb to it
services:
...
nginx:
...
# comment this line
# network_mode: host
# then add the following lines
networks:
bbb-net:
ipv4_address: 10.7.7.253
...
...
2024-06-26 16:25:43 +00:00
bunkerweb:
image: bunkerity/bunkerweb:1.6.0-rc1
2024-06-26 16:25:43 +00:00
container_name: bunkerweb
2022-06-03 15:24:14 +00:00
ports:
- "80:8080/tcp"
- "443:8443/tcp"
- "443:8443/udp" # for QUIC
2022-06-03 15:24:14 +00:00
environment:
2024-06-26 16:25:43 +00:00
API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24"
restart: "unless-stopped"
2022-06-03 15:24:14 +00:00
networks:
bbb-net:
ipv4_address: 10.7.7.254
2023-03-08 16:01:55 +00:00
bw-universe:
2022-11-20 17:53:41 +00:00
bw-scheduler:
image: bunkerity/bunkerweb-scheduler:1.6.0-rc1
2024-06-26 16:25:43 +00:00
container_name: bw-scheduler
2022-11-20 17:53:41 +00:00
depends_on:
2024-06-26 16:25:43 +00:00
- bunkerweb
2022-11-20 17:53:41 +00:00
volumes:
- bw-data:/data
2022-11-21 10:28:08 +00:00
environment:
2024-06-26 16:25:43 +00:00
BUNKERWEB_INSTANCES: "bunkerweb"
SERVER_NAME: "${DOMAIN}"
API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24"
AUTO_LETS_ENCRYPT: "yes"
USE_CLIENT_CACHE: "yes"
USE_GZIP: "yes"
USE_REVERSE_PROXY: "yes"
REVERSE_PROXY_WS: "yes"
REVERSE_PROXY_URL: "/"
REVERSE_PROXY_HOST: "http://10.7.7.253:8080"
restart: "unless-stopped"
2022-11-21 10:28:08 +00:00
networks:
2024-06-26 16:25:43 +00:00
- bw-universe
2022-11-20 17:53:41 +00:00
2022-06-03 15:24:14 +00:00
...
volumes:
...
2022-11-20 17:53:41 +00:00
bw-data:
2022-11-21 10:28:08 +00:00
networks:
...
2023-03-08 16:01:55 +00:00
bw-universe:
ipam:
driver: default
config:
- subnet: 10.20.30.0/24