commit 84c249186b11d82f12beb2830b932408caca0ef2 Author: Kroonk Date: Wed Apr 15 19:59:54 2026 +0200 Add Home Assistant docker-compose configuration Docker Compose setup for running Home Assistant on UGREEN NAS (UGOS PRO) with host networking, hardware access, and persistent config storage. Co-Authored-By: Claude Opus 4.6 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6928de3 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + homeassistant: + container_name: homeassistant + image: ghcr.io/home-assistant/home-assistant:stable + volumes: + - ./homeassistant/config:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + environment: + - TZ=Europe/Berlin + restart: unless-stopped + network_mode: host + privileged: true