Synology Docker Wyze bridge questions

Hi all, hoping someone with knowledge on docker can assist, just starting using this so new to me.
From other cam posts I'm trying the docker wyze bridge (https://github.com/mrlt8/docker-wyze-bridge) and have it installed and streaming 1 cam successfully per the logs. However, I can't figure out the network configuration to get it streaming successfully to Channels.
I've kept the default network setting to bridge in docker and when looking at details, bridge is on 172.17.0.x, my local is 192.168.1.x .
Is this a port forwarding item I need to configure in synology? I can't view any of the streams the wyze bridge is broadcasting.

Channels is also running on the NAS, not in docker though

Thanks for any tips as I'm pulling my hair out!

What does your docker run or docker compose look like? Did you port forward 8888 via -p 8888:8888?

You want to add a custom channel. Use text as the custom channel input.

#EXTM3U
#EXTINF:-1 channel-id="Camera Name" channel-number="300" tvg-name="Camera Name" tvc-guide-title="Camera Name" tvc-guide-description="Live view of Camera Name" ,camname
http://x.x.x.x:8888/camera-nickname/stream.m3u8

Replace Camera Name with however you want it to show in Channels. Replace x.x.x.x with the IP of your docker host. If it’s running on same device as your channels server you could also put localhost. Replace camera-nickname with the name of the camera in wyze converted to all lowercase with - for spaces.

Thank you and I don't believe I did any port forwarding but will check. Appreciate the custom channels details as well!

Got it working!! Really neat feature and thank you @freeside for the assistance