Initial commit - All Portainer stacks from Mac

This commit is contained in:
Kevin Douglas
2026-04-27 10:05:40 -04:00
commit 49006ddd71
20 changed files with 571 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