From 174c3ecb2eaa7607ab15bc2825b791b5b35eae5c Mon Sep 17 00:00:00 2001 From: Andy Bunce Date: Tue, 7 Apr 2026 21:08:27 +0100 Subject: [PATCH] add: home assistant --- homeassistant/README.md | 3 +++ homeassistant/compose.yaml | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 homeassistant/README.md create mode 100644 homeassistant/compose.yaml diff --git a/homeassistant/README.md b/homeassistant/README.md new file mode 100644 index 0000000..668cf62 --- /dev/null +++ b/homeassistant/README.md @@ -0,0 +1,3 @@ + + +Home Assistant should be accessible using http://:8123 \ No newline at end of file diff --git a/homeassistant/compose.yaml b/homeassistant/compose.yaml new file mode 100644 index 0000000..2f79450 --- /dev/null +++ b/homeassistant/compose.yaml @@ -0,0 +1,13 @@ +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - /PATH_TO_YOUR_CONFIG:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + network_mode: host + environment: + TZ: Europe/London \ No newline at end of file