-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
19 lines (19 loc) · 909 Bytes
/
docker-compose.yaml
File metadata and controls
19 lines (19 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
services:
homebridge:
image: homebridge/homebridge:2025-11-08
network_mode: host
environment:
APPLETV_ENHANCED_DEV: "true"
volumes:
- ./user_storage/accessories:/homebridge/accessories
- ./user_storage/appletv-enhanced:/homebridge/appletv-enhanced
- ./user_storage/appletv-enhanced/.docker-venv:/homebridge/appletv-enhanced/.venv
- ./user_storage/persist:/homebridge/persist
- ./user_storage/.uix-dashboard.json:/homebridge/.uix-dashboard.json:ro
- ./user_storage/.uix-secrets:/homebridge/.uix-secrets:ro
- ./user_storage/auth.json:/homebridge/auth.json:ro
- ./user_storage/config.json:/homebridge/config.json
- ./docker-startup.sh:/homebridge/startup.sh:ro
- ./package.json:/tmp/package.json:ro
ports:
- "8581:8581/tcp"