initial commit

This commit is contained in:
2025-12-20 12:32:06 -06:00
commit d3537686b5
2 changed files with 26 additions and 0 deletions

8
README.md Normal file
View File

@@ -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.

18
docker-compose.yaml Normal file
View File

@@ -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