commit d3537686b593c24496a3d6dc3f89be815bc418b2 Author: Matt Speer Date: Sat Dec 20 12:32:06 2025 -0600 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..5547d67 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Home Assistant + +## Description + +Home Assistant is an open-source home automation platform that allows you to control and monitor smart devices from a single interface. It supports a wide range of devices and integrations, enabling automation of tasks for improved convenience, security, and energy efficiency. Designed to run locally, it ensures greater privacy and reliability. + +> [!note] +> use https://www.home-assistant.io/common-tasks/general/#backups to create the documentation for back and restore instructions. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..1209be3 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +--- +version: "2.1" +services: + homeassistant: + image: lscr.io/linuxserver/homeassistant:latest + container_name: homeassistant + network_mode: host + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + volumes: + - /home/mattspeer/docker/homeassistant:/config + ports: + - 8123:8123 +# devices: +# - /path/to/device:/path/to/device #optional + restart: always