mirror of
https://github.com/samjage/lab.git
synced 2026-06-06 04:20:43 +00:00
initial commit - docker stacks
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
services:
|
||||
homebridge:
|
||||
container_name: homebridge
|
||||
image: homebridge/homebridge:latest
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
- HOMEBRIDGE_CONFIG_UI_PORT=8581
|
||||
- ENABLE_AVAHI=1
|
||||
volumes:
|
||||
- homebridge-data:/homebridge
|
||||
|
||||
scrypted:
|
||||
container_name: scrypted
|
||||
image: koush/scrypted:latest
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
- SCRYPTED_WEBHOOK_UPDATE_AUTHORIZATION=SET_THIS_TO_SOME_RANDOM_TEXT_BROHAM
|
||||
- SCRYPTED_WEBHOOK_UPDATE=http://localhost:10444/v1/update
|
||||
- ENABLE_AUDIO=True
|
||||
volumes:
|
||||
- /.scrypted/volume:/server/volume
|
||||
labels:
|
||||
- "com.centurylinklabs.watchtower.scope=scrypted"
|
||||
|
||||
wyze-bridge:
|
||||
container_name: wyze-bridge
|
||||
image: mrlt8/wyze-bridge:latest
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
- WYZE_EMAIL=acwallace520@gmail.com
|
||||
- WYZE_PASSWORD=Alexander!626
|
||||
- API_ID=b98f65a0-92b6-4772-baa7-cde4663143f8
|
||||
- API_KEY=vhEztGgO1gRNL5utan5Bw1V6Z0TgTyle4EhYPpkmZD5klwBJ2nHQHCcItHUi
|
||||
- WB_AUTH=False
|
||||
- ENABLE_AUDIO=True
|
||||
- AUDIO_CODEC=AAC
|
||||
- RTSP_FW=Force
|
||||
|
||||
scrypted-watchtower:
|
||||
container_name: scrypted-watchtower
|
||||
image: containrrr/watchtower
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- WATCHTOWER_SCOPE=scrypted
|
||||
- WATCHTOWER_HTTP_API_PERIODIC_POLLS=true
|
||||
- WATCHTOWER_HTTP_API_TOKEN=SET_THIS_TO_SOME_RANDOM_TEXT_BRO
|
||||
- WATCHTOWER_HTTP_API_UPDATE=true
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
command: --interval 3600 --cleanup --scope scrypted
|
||||
labels:
|
||||
- "com.centurylinklabs.watchtower.scope=scrypted"
|
||||
ports:
|
||||
- "10444:8080"
|
||||
|
||||
volumes:
|
||||
homebridge-data:
|
||||
external: true
|
||||
name: homebridge_homebridge
|
||||
Reference in New Issue
Block a user