Added HABridge conainer

This commit is contained in:
2025-11-25 23:54:16 -05:00
parent 32a7033e56
commit 1578290dbb
3 changed files with 21 additions and 1 deletions

3
ha/.gitignore vendored
View File

@@ -1,5 +1,8 @@
# Home Assistant configuration # Home Assistant configuration
*.env *.env
ha_config/
bridge_config/
# Ignore system generated logs # Ignore system generated logs
*.log *.log

0
ha/README.md Normal file
View File

View File

@@ -3,7 +3,7 @@ services:
container_name: homeassistant container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable" image: "ghcr.io/home-assistant/home-assistant:stable"
volumes: volumes:
- ./config:/config - ./ha_config:/config
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro - /run/dbus:/run/dbus:ro
restart: unless-stopped restart: unless-stopped
@@ -16,6 +16,23 @@ services:
environment: environment:
TZ: America/Detroit TZ: America/Detroit
habridge:
image: lscr.io/linuxserver/habridge:latest
container_name: habridge
environment:
- PUID=1000
- PGID=1000
- TZ=America/Detroit
volumes:
- ./bridge_config:/config
ports:
- 8282:8080
- 50000:50000
networks:
- 'default'
- 'homelab'
restart: unless-stopped
networks: networks:
homelab: homelab:
external: true external: true