From 3ca6b6a1bbd1192d05442c8a2672346effeb0efb Mon Sep 17 00:00:00 2001 From: john Date: Sat, 25 Apr 2026 23:17:37 +0100 Subject: [PATCH] Add home_assistant/docker-compose.yml --- home_assistant/docker-compose.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 home_assistant/docker-compose.yml diff --git a/home_assistant/docker-compose.yml b/home_assistant/docker-compose.yml new file mode 100644 index 0000000..7ca2eed --- /dev/null +++ b/home_assistant/docker-compose.yml @@ -0,0 +1,13 @@ +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - /docker/ha/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