<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<p>I've found this: <a class="moz-txt-link-freetext" href="https://github.com/bigbluebutton/docker">https://github.com/bigbluebutton/docker</a></p>
<p>As readme says, in repo file file with whatever few config
scripts there is do</p>
<pre><code>docker build -t <image-name> .</code></pre>
<p>and then run <br>
</p>
<pre><code>docker run --rm -p 80:80/tcp -p 1935:1935 -p 3478:3478 -p 3478:3478/udp bigbluebutton -h <HOST_IP>
</code></pre>
<p>It makes service available on http.</p>
<p>I have a couple of points to note.</p>
<p>1) Notice how docker run command shows what ports are used.
Familiarity with BBB is need. Does browser client use all these?
Can non-80's in the example be video sharing, audio?<br>
</p>
<p>2) All settings seem to be in one folder, so adding lines for TLS
and cert happens here, and next docker build command should be run
with flag --no-cache for blind assurance that everything is new.</p>
<p>3) Yes, BBB is java (hence resources) -- I saw tomcat config file
there.<br>
</p>
<p><br>
</p>
</body>
</html>