26 lines
549 B
Markdown
26 lines
549 B
Markdown
|
---
|
||
|
obj: application
|
||
|
os: web
|
||
|
website: https://www.home-assistant.io/
|
||
|
android-id: io.homeassistant.companion.android.minimal
|
||
|
---
|
||
|
# Home Assistant
|
||
|
#refactor
|
||
|
Home Assistant is a local smart home hub platform supportig many integrations for automation.
|
||
|
|
||
|
## Docker Compose
|
||
|
```yaml
|
||
|
version: '3'
|
||
|
services:
|
||
|
homeassistant:
|
||
|
image: homeassistant/home-assistant:stable
|
||
|
volumes:
|
||
|
- ./config:/config
|
||
|
environment:
|
||
|
- TZ=Europe/Berlin
|
||
|
restart: always
|
||
|
network_mode: host
|
||
|
```
|
||
|
|
||
|
# [Wake On LAN](../../internet/Wake%20on%20LAN.md)
|
||
|
#todo
|