Added configuration for Wyze bridge

This commit is contained in:
Ashish D'Souza 2023-10-29 20:54:39 -05:00
parent 3642e26c7a
commit 56da8ba7db
2 changed files with 18 additions and 1 deletions

View File

@ -97,7 +97,7 @@ cameras:
enabled: true enabled: true
ffmpeg: ffmpeg:
inputs: inputs:
- path: 'rtsp://{FRIGATE_BACK_DOOR_RTSP_USERNAME}:{FRIGATE_BACK_DOOR_RTSP_PASSWORD}@192.168.0.202:554/live' - path: 'rtsp://wyze-bridge:8554/back-yard-cam'
roles: roles:
- detect - detect
- record - record

View File

@ -9,6 +9,7 @@ services:
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
- mqtt - mqtt
- wyze-bridge
healthcheck: healthcheck:
test: ls /media/frigate && curl -s -f http://localhost:5000 -o /dev/null test: ls /media/frigate && curl -s -f http://localhost:5000 -o /dev/null
interval: 60s interval: 60s
@ -50,6 +51,22 @@ services:
- frigate - frigate
ports: ports:
- 127.0.0.1:10000:5000 - 127.0.0.1:10000:5000
wyze-bridge:
container_name: frigate-wyze-bridge
image: mrlt8/wyze-bridge:2.4.0
restart: unless-stopped
environment:
NET_MODE: LAN
FILTER_NAMES: Back Yard Cam
WYZE_EMAIL: ${WYZE_EMAIL}
WYZE_PASSWORD: ${WYZE_PASSWORD}
volumes:
- type: bind
source: /etc/localtime
target: /etc/localtime
read_only: true
networks:
- frigate
notify: notify:
container_name: frigate-notify container_name: frigate-notify
image: frigate-notify:latest image: frigate-notify:latest