From 90abeb929cda6b2e0a0ffc49205c88782b74a502 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sun, 28 Jun 2026 17:11:15 +0200 Subject: [PATCH] =?UTF-8?q?Feat:=20F=C3=BCgt=20docker-compose=20hinzu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ docker-compose.yaml | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 docker-compose.yaml diff --git a/.gitignore b/.gitignore index 1d74e21..8256f9b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .vscode/ + +data/ diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..59dd9ca --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +services: + homeassistant: + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - ./data/config:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + network_mode: host + environment: + TZ: Europe/Berlin