From 80318cecbc96f328c72721904e6b2455ade5fbaa Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Wed, 11 Sep 2024 19:51:42 +0200 Subject: [PATCH] Add homeassistant --- homeassistant/README.md | 4 ++++ homeassistant/docker-compose.yaml | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 homeassistant/README.md create mode 100644 homeassistant/docker-compose.yaml diff --git a/homeassistant/README.md b/homeassistant/README.md new file mode 100644 index 0000000..dc21cfb --- /dev/null +++ b/homeassistant/README.md @@ -0,0 +1,4 @@ +# homeassistant + +Open source home automation that puts local control and privacy first. + diff --git a/homeassistant/docker-compose.yaml b/homeassistant/docker-compose.yaml new file mode 100644 index 0000000..449e0c6 --- /dev/null +++ b/homeassistant/docker-compose.yaml @@ -0,0 +1,16 @@ +version: '3' + +services: + homeassistant: + restart: unless-stopped + container_name: homeassistant + image: "ghcr.io/home-assistant/home-assistant:${hass_version:-stable}" + volumes: + - hass_config:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + privileged: true + network_mode: host + +volumes: + hass_config: