wyze-bridge.yaml
· 851 B · YAML
原始檔案
version: "3.8"
services:
wyze-bridge:
image: mrlt8/wyze-bridge:latest
container_name: wyze-bridge
restart: unless-stopped
ports:
- "1935:1935" # RTMP (if port 1935 is in use, change to 11935:1935)
- "8554:8554" # RTSP (if port 8554 is in use, change to 18554:8554)
- "8888:8888" # Web UI (if port 8888 is in use, change to 18888:8888)
- "5000:5000" # API (optional) (if port 5000 is in use, change to 15000:5000)
environment:
WYZE_EMAIL: "email@domain.com"
WYZE_PASSWORD: "wyze_password"
WYZE_TOTP_KEY: "" # only if you use 2FA
TZ: "America/Los_Angeles" #Change to your area
RTSP_SIMPLE_SERVER: "true"
volumes:
- /volume1/docker/wyze-bridge:/config
# once setup login will be "wbadmin" and te password will be your "email" (minus @domain.com)
| 1 | version: "3.8" |
| 2 | |
| 3 | services: |
| 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) |