mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
13 lines
283 B
YAML
13 lines
283 B
YAML
version: "3.8"
|
|
services:
|
|
hass:
|
|
container_name: hass
|
|
image: homeassistant/home-assistant:stable
|
|
volumes:
|
|
- ./data:/config
|
|
- /dev/bus/usb:/dev/bus/usb
|
|
- /var/run/dbus:/var/run/dbus
|
|
network_mode: host
|
|
privileged: true
|
|
restart: unless-stopped
|