Homeassistant intial build

This commit is contained in:
2025-11-25 23:33:38 -05:00
parent a310fed89c
commit 3e1fd60853
13 changed files with 274 additions and 0 deletions

21
ha/docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- ./config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
restart: unless-stopped
privileged: false
ports:
- '8123:8123'
networks:
- 'default'
- 'homelab'
environment:
TZ: America/Detroit
networks:
homelab:
external: true