From 90b82537f117d6876a67d7ec3ce6cfa76cfdb41f Mon Sep 17 00:00:00 2001 From: Pim Nelissen Date: Fri, 9 May 2025 13:51:03 +0200 Subject: [PATCH] add homeassistant compose --- homeassistant/docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 homeassistant/docker-compose.yml diff --git a/homeassistant/docker-compose.yml b/homeassistant/docker-compose.yml new file mode 100644 index 0000000..bf126d8 --- /dev/null +++ b/homeassistant/docker-compose.yml @@ -0,0 +1,11 @@ +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - /opt/homeassistant/config:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + network_mode: host \ No newline at end of file