Init wyze bridge
All checks were successful
Deploy to Fighter / Deploy (push) Successful in 18s
Deploy to Fighter / Notify (push) Successful in 2s

This commit is contained in:
Joey Hafner 2024-02-27 23:12:46 -08:00
parent 718b22da70
commit 3a7cee759b
2 changed files with 26 additions and 1 deletions

View File

@ -4,7 +4,8 @@ services:
image: lscr.io/linuxserver/homeassistant:latest image: lscr.io/linuxserver/homeassistant:latest
container_name: home-assistant_home-assistant container_name: home-assistant_home-assistant
env_file: env_file:
- home-assistant.env - path: home-assistant.env
required: true
networks: networks:
- web - web
- home-assistant - home-assistant
@ -28,6 +29,23 @@ services:
- 12883:1883 - 12883:1883
- 19001:9001 - 19001:9001
wyze-bridge:
image: mrlt8/wyze-bridge
container_name: home-assistant_wyze-bridge
networks:
- web
env_file:
- path: ./wyze-bridge.env
required: true
- path: wyze-bridge_secrets.env
required: false
ports:
- 11935:1935 # RTMP
- 18554:8554 # RTSP
- 19090:8888 # HLS
- 19091:8889 # WebRTC
- 19092:8189/udp # WebRTC/ICE
networks: networks:
web: web:
external: true external: true

View File

@ -0,0 +1,7 @@
# [OPTIONAL] IP Address of the host to enable WebRTC e.g.,:
WB_IP=192.168.1.23
# [CUSTOM PORTS] For reverse proxy compatibility
WB_RTSP_URL=rtsp://192.168.1.23:18554/
WB_RTMP_URL=rtmp://192.168.1.23:11935/
WB_HLS_URL=http://192.168.1.23:19090/
WB_WEBRTC_URL=http://192.168.1.23:19091/