docker/docker-compose.yml

124 lines
3.1 KiB
YAML
Raw Normal View History

2020-04-09 15:43:58 +02:00
version: '3.6'
2020-04-09 08:48:47 +02:00
2019-12-09 04:34:03 +01:00
services:
core:
image: bbb-core
2019-12-09 04:34:03 +01:00
cap_add:
2020-04-09 02:11:32 +02:00
- SYS_NICE # for realtime scheduling
2020-04-09 08:02:08 +02:00
- SYS_ADMIN # for systemd
2019-12-09 04:34:03 +01:00
environment:
DOMAIN: ${DOMAIN}
EXTERNAL_IP: ${EXTERNAL_IP}
SHARED_SECRET: ${SHARED_SECRET}
WELCOME_MESSAGE: ${WELCOME_MESSAGE}
WELCOME_FOOTER: ${WELCOME_FOOTER}
container: docker
2019-12-09 04:34:03 +01:00
tmpfs:
- /run
- /run/lock
2020-04-08 06:36:27 +02:00
- /tmp:exec,mode=777
2019-12-09 04:34:03 +01:00
volumes:
2020-04-09 08:02:08 +02:00
- /sys/fs/cgroup:/sys/fs/cgroup:ro # for systemd
- ./mod/core/entrypoint.sh:/entrypoint.sh
- ./mod/freeswitch/vars.xml:/opt/freeswitch/conf/vars.xml.tmpl
2020-04-09 02:11:32 +02:00
- ./mod/freeswitch/external.xml:/opt/freeswitch/conf/sip_profiles/external.xml
- ./mod/web/bigbluebutton.properties:/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties.tmpl
- ./mod/core/bigbluebutton.yml:/usr/local/bigbluebutton/core/scripts/bigbluebutton.yml
- ./mod/bbb-apps-akka/application.conf:/usr/share/bbb-apps-akka/conf/application.conf.tmpl
2020-04-09 02:11:32 +02:00
network_mode: host
2020-04-09 08:48:47 +02:00
nginx:
image: nginx:1.17
2020-04-09 18:15:06 +02:00
depends_on:
- etherpad
- webrtc-sfu
2020-04-09 22:33:27 +02:00
- html5
2020-04-09 08:48:47 +02:00
ports:
- "80:80"
volumes:
- ./mod/nginx/bbb:/etc/nginx/bbb
- ./mod/nginx/bigbluebutton:/etc/nginx/conf.d/default.conf
networks:
- bluenet
extra_hosts:
- "host.docker.internal:10.7.7.1"
2020-04-09 15:43:58 +02:00
etherpad:
image: etherpad/etherpad:1.8.0
2020-04-09 18:15:06 +02:00
depends_on:
- redis
2020-04-09 15:43:58 +02:00
environment:
ETHERPAD_API_KEY: ${ETHERPAD_API_KEY}
volumes:
- ./mod/pad/settings.json:/opt/etherpad-lite/settings.json
- ./mod/pad/entrypoint.sh:/entrypoint.sh
entrypoint: /entrypoint.sh
networks:
bluenet:
ipv4_address: 10.7.7.4
2020-04-09 08:48:47 +02:00
2020-04-09 15:43:58 +02:00
redis:
image: redis:3.0-alpine
ports:
- "127.0.0.1:6379:6379" # TODO: remove as soon as we updated all redis host references
networks:
bluenet:
ipv4_address: 10.7.7.5
2020-04-09 18:13:18 +02:00
2020-04-09 18:27:47 +02:00
mongodb:
image: mongo:3.4
networks:
bluenet:
ipv4_address: 10.7.7.6
2020-04-09 18:13:18 +02:00
kurento:
image: kurento/kurento-media-server:6.13
environment:
KMS_STUN_IP: 64.233.177.127 # google stun server
KMS_STUN_PORT: 19302
KMS_MIN_PORT: 24577
KMS_MAX_PORT: 32768
KMS_EXTERNAL_ADDRESS:
KMS_TURN_URL:
2020-04-09 18:15:06 +02:00
network_mode: host
2020-04-09 15:43:58 +02:00
2020-04-09 18:15:06 +02:00
webrtc-sfu:
build: ./bbb-webrtc-sfu
depends_on:
- redis
- kurento
- core
2020-04-09 18:15:06 +02:00
environment:
CLIENT_HOST: 0.0.0.0
KURENTO_NAME: kurento
REDIS_HOST: redis
FREESWITCH_IP: host.docker.internal
FREESWITCH_SIP_IP: 144.76.97.34
ESL_IP: host.docker.internal
LOG_LEVEL: debug
NODE_CONFIG: '{"kurento":[{"ip":"144.76.97.34","url":"ws://kurento:8888/kurento"}]}'
ports:
- "127.0.0.1:3008:3008"
extra_hosts:
- host.docker.internal:10.7.7.1
- kurento:10.7.7.1
networks:
- bluenet
2020-04-09 22:33:27 +02:00
html5:
image: bbb-html5
depends_on:
- redis
- etherpad
networks:
- bluenet
volumes:
- ./mod/html5/entrypoint.sh:/entrypoint.sh
- ./mod/html5/settings.yml:/app/programs/server/assets/app/config/settings.yml
2020-04-09 08:48:47 +02:00
networks:
bluenet:
ipam:
2020-04-09 15:43:58 +02:00
driver: default
config:
- subnet: "10.7.7.0/24"