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: