-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
services: | ||
tailscale: | ||
image: tailscale/tailscale:latest | ||
container_name: tailscale | ||
hostname: wyze-bridge # For tailscale | ||
restart: unless-stopped | ||
ports: | ||
- 8554:8554 # RTSP | ||
- 8889:8889 #WebRTC | ||
- 8189:8189/udp # WebRTC/ICE | ||
- 5000:5000 # WEB-UI | ||
cap_add: [NET_ADMIN] | ||
environment: | ||
- TS_AUTHKEY=tskey-client-notAReal-OAuthClientSecret1Atawk | ||
- TS_EXTRA_ARGS=--accept-routes | ||
- TS_USERSPACE=false | ||
volumes: | ||
- /dev/net/tun:/dev/net/tun | ||
wyze-bridge: | ||
container_name: wyze-bridge | ||
restart: unless-stopped | ||
image: mrlt8/wyze-bridge:latest | ||
depends_on: [tailscale] | ||
network_mode: service:tailscale | ||
environment: | ||
# [OPTIONAL] Credentials can be set in the WebUI | ||
# API Key and ID can be obtained from the wyze dev portal: | ||
# https://developer-api-console.wyze.com/#/apikey/view | ||
- WYZE_EMAIL= | ||
- WYZE_PASSWORD= | ||
- API_ID= | ||
- API_KEY= | ||
# [OPTIONAL] IP Address of the host to enable WebRTC e.g.,: | ||
# - WB_IP=192.168.1.122 | ||
# WebUI and Stream authentication: | ||
- WB_AUTH=True # Set to false to disable web and stream auth. | ||
# WB_USERNAME= | ||
# WB_PASSWORD= |