Standardize all compose files to .yml extension

This commit is contained in:
Kevin Douglas
2026-04-27 10:43:47 -04:00
parent 02b39d78ea
commit 0b85e9da80
21 changed files with 0 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
version: "3.8"
services:
homebridge:
container_name: homebridge
image: homebridge/homebridge:ubuntu
restart: always
network_mode: host
hostname: homebridge
environment:
HOMEBRIDGE_CONFIG_UI_PORT: "8581"
TZ: America/New_York # Add if not already set in your env
ENABLE_AVAHI: "1"
HOMEBRIDGE_APT_PACKAGE: "1"
UIX_CUSTOM_PLUGIN_PATH: "/var/lib/homebridge/node_modules"
# Keep any other custom env you had
expose:
- "8581/tcp"
volumes:
- "homebridge_homebridge:/homebridge"
working_dir: "/homebridge"
entrypoint: ["/init"]
logging:
driver: json-file
volumes:
homebridge_homebridge:
external: true