Add Homebridge Docker compose file

This commit is contained in:
moshferatu 2024-04-01 11:38:38 -07:00
parent 480fcaf6b9
commit cfce593a2a

14
homebridge.yaml Normal file
View File

@ -0,0 +1,14 @@
version: "3"
services:
homebridge:
container_name: homebridge
image: homebridge/homebridge:latest
environment:
- HOMEBRIDGE_CONFIG_UI=1
- HOMEBRIDGE_CONFIG_UI_PORT=8581
volumes:
- <docker directory>/homebridge:/homebridge
network_mode: host
ports:
- 8581:8581
restart: unless-stopped