bbb: pin mediasoup to IPv4-only and single worker via compose override

Set MS_WORKERS=1, MS_ENABLE_IPV6=false, and MS_WEBRTC_LISTEN_IPS to announce only EXTERNAL_IPv4 for webrtc-sfu. Helps avoid mediasoup router init issues seen when IPv6 is present.

Context/conversation: https://chatgpt.com/share/68d69a0e-22b0-800f-890b-13721a35f51b
This commit is contained in:
2025-09-26 15:50:28 +02:00
parent cbfb991e79
commit 0602148caa

View File

@@ -1 +1,7 @@
{# Overrides for Big Blue Button #}
services:
webrtc-sfu:
environment:
MS_WORKERS: "1"
MS_ENABLE_IPV6: "false"
MS_WEBRTC_LISTEN_IPS: >-
[{"ip":"0.0.0.0","announcedIp":"${EXTERNAL_IPv4}"}]