Naposledy aktivní 1766073481

wyze-bridge.yaml Raw
1version: "3.8"
2
3services:
4 wyze-bridge:
5 image: mrlt8/wyze-bridge:latest
6 container_name: wyze-bridge
7 restart: unless-stopped
8 ports:
9 - "1935:1935" # RTMP (if port 1935 is in use, change to 11935:1935)
10 - "8554:8554" # RTSP (if port 8554 is in use, change to 18554:8554)
11 - "8888:8888" # Web UI (if port 8888 is in use, change to 18888:8888)
12 - "5000:5000" # API (optional) (if port 5000 is in use, change to 15000:5000)
13 environment:
14 WYZE_EMAIL: "email@domain.com"
15 WYZE_PASSWORD: "wyze_password"
16 WYZE_TOTP_KEY: "" # only if you use 2FA
17 TZ: "America/Los_Angeles" #Change to your area
18 RTSP_SIMPLE_SERVER: "true"
19 volumes:
20 - /volume1/docker/wyze-bridge:/config
21
22 # once setup login will be "wbadmin" and te password will be your "email" (minus @domain.com)