Files
lab/home-automation/docker-compose.yml
T
admin 0497fac743 Refactor scrypted service in docker-compose.yml
Reorganized scrypted service configuration in docker-compose.yml.
2026-04-01 09:41:28 -04:00

64 lines
1.7 KiB
YAML

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
wyze-bridge:
container_name: wyze-bridge
image: mrlt8/wyze-bridge:latest
restart: unless-stopped
network_mode: host
environment:
- WYZE_EMAIL=*******
- WYZE_PASSWORD=*******
- API_ID=*******
- API_KEY=*******
- WB_AUTH=False
- ENABLE_AUDIO=True
- AUDIO_CODEC=AAC
- RTSP_FW=Force
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"
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