MM stand as a shortcut for multiparty-meeting.
This is the container, or a "dockerized" version of the multiparty meeting, and like MM is shortcut, this container is a simillar shortcut that saves time. :)
- git clone this code to your docker machine.
- copy your cert in
certs/cert.pem
andcerts/privkey.pem
- configure your app side configs
e.g. Set TURN server and credential in
configs/app/config.js
- configure your server side configs
e.g. Set TURN server and credential in
configs/server/config.js
- replace logo/logo.svg with your company logo svg.
There is two ways
- simple use
docker run
command
./run.sh
- or with
docker-compose
/ install docker compose /
docker-compose up --detach
If you change app-config.js or or something in .env then you have to rebuild the image.
docker-compose up --build --detach
Container works in "host" network mode, because birdge mode has the following issue
[Docker - Docker hangs when attempting to bind a large number of ports] (https://success.docker.com/article/docker-compose-and-docker-run-hang-when-binding-a-large-port-range)
Read more about configs and settings in multiparty meeting README.