Thanks Lorenzo (and Alesandro for posting the talk slides)
For now, I am just looking for an easy solution for local development in a small academic team (with mixed OS's).
Do you think using the simple docker bridge network would be okay for that? Each dev would be communicating from their local browser to local docker janus.
Otherwise, Alesandro's talk doesn't go into implementation details about creating a docker network to run janus in host mode.
Would I just create the docker network and then run janus in the docker container with `nat-1-1=<DOCKER_IP>` ?
...
Here are some other things I don't understand and would love a bit of help on, if someone had the time.
When I start janus inside the docker with bridge networking, I alway see: [WARN] Janus is deployed on a private address (172.17.0.2) but you didn't specify any STUN server!
The 'private address' can change though, sometimes it is 192.168.65.3. Is that just the internal docker IP address?
Why does bridge networking work with janus, but "host" networking with the following doesn't? : docker run -v `pwd`/conf:/opt/janus/conf --network host august/janus-alpine
I would expect host networking to just use the local host network and all ports would be exposed. However, running the above, I cannot connect to janus websocket at localhost:8188 .
thanks for any help you might have, best -August.