From 1578290dbb381893bf137c273d79b4384caed442 Mon Sep 17 00:00:00 2001 From: Alex Szumko Date: Tue, 25 Nov 2025 23:54:16 -0500 Subject: [PATCH] Added HABridge conainer --- ha/.gitignore | 3 +++ ha/README.md | 0 ha/docker-compose.yml | 19 ++++++++++++++++++- 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 ha/README.md diff --git a/ha/.gitignore b/ha/.gitignore index 5735536..97a8c60 100644 --- a/ha/.gitignore +++ b/ha/.gitignore @@ -1,5 +1,8 @@ # Home Assistant configuration *.env +ha_config/ +bridge_config/ + # Ignore system generated logs *.log diff --git a/ha/README.md b/ha/README.md new file mode 100644 index 0000000..e69de29 diff --git a/ha/docker-compose.yml b/ha/docker-compose.yml index c06550e..b580de2 100644 --- a/ha/docker-compose.yml +++ b/ha/docker-compose.yml @@ -3,7 +3,7 @@ services: container_name: homeassistant image: "ghcr.io/home-assistant/home-assistant:stable" volumes: - - ./config:/config + - ./ha_config:/config - /etc/localtime:/etc/localtime:ro - /run/dbus:/run/dbus:ro restart: unless-stopped @@ -16,6 +16,23 @@ services: environment: 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: homelab: external: true