Web Management Port

With many Broadcaster containers running on the same host in host mode you will need to modify the port for the web management UI for each container. You can do this with a Broadcaster API call such as the one shown below.

# curl -i --user "{username}:{password}" http://{broadcaster_IP_address}:{web_UI_port}/apply_settings.json? gui_web_port={new_web_UI_port}

The default web_UI_port is 4444. Note that when you build the container you also need to EXPOSE the range of ports you plan to use for the web management UI’s for each instance of the container.

In bridged mode each container will have its own IP so you do not need to modify the web UI port for the Broadcaster, but you will need to map the container’s IP address and web UI port to unique ports on the host itself if the container needs to be accessed from outside of the host.

Â