According to Dockerfile and docker-compose.yml, mm only publishes ports 40000-49999/udp:
EXPOSE 40000-49999/udp
ports:
- "40000-49999:40000-49999/udp"
However, since mm runs with network_mode: "host" the set of actually published ports also comprises 40000-49999/tcp. These TCP ports are e.g. important for meeting participants who may traverse firewalls with openssh/SOCKS5 (and forceTcp=true). README.md (in havfo/multiparty-meeting) and roles/mm/files/ferm.conf (in misi/mm-ansible) already refer to them.
IMO they should also be listed in Dockerfile and docker-compose.yml to enhance documentation and consistency.
According to
Dockerfile
anddocker-compose.yml
,mm
only publishes ports 40000-49999/udp:However, since
mm
runs withnetwork_mode: "host"
the set of actually published ports also comprises 40000-49999/tcp. These TCP ports are e.g. important for meeting participants who may traverse firewalls withopenssh
/SOCKS5 (andforceTcp=true
).README.md
(inhavfo/multiparty-meeting
) androles/mm/files/ferm.conf
(inmisi/mm-ansible
) already refer to them.IMO they should also be listed in
Dockerfile
anddocker-compose.yml
to enhance documentation and consistency.