mirror of
https://github.com/samjage/lab.git
synced 2026-06-06 04:10:42 +00:00
c9155fa096
Redacted sensitive information in docker-compose.yml
63 lines
1.7 KiB
YAML
63 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
|
|
|
|
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=*******
|
|
- WYZE_PASSWORD=*******
|
|
- API_ID=*******
|
|
- API_KEY=*******
|
|
- 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
|