17 lines
360 B
YAML
17 lines
360 B
YAML
|
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:
|