initial commit
This commit is contained in:
8
README.md
Normal file
8
README.md
Normal 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
18
docker-compose.yaml
Normal 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
|
||||||
Reference in New Issue
Block a user