Add homeassistant
This commit is contained in:
parent
187b4f0f04
commit
80318cecbc
2 changed files with 20 additions and 0 deletions
4
homeassistant/README.md
Normal file
4
homeassistant/README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
# homeassistant
|
||||
|
||||
Open source home automation that puts local control and privacy first.
|
||||
|
16
homeassistant/docker-compose.yaml
Normal file
16
homeassistant/docker-compose.yaml
Normal file
|
@ -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:
|
Loading…
Reference in a new issue