From f4f4177eef03efacf556686df8e9cf6f26fa7c47 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 2 Nov 2025 14:32:43 +0100 Subject: [PATCH] =?UTF-8?q?home-assistant/docker-compose.yml=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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..d52d654 --- /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" + ports: + - "8123:8123" + volumes: + - ./hass-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