1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/hass/docker-compose.yml

13 lines
283 B
YAML
Raw Normal View History

2021-11-08 11:25:37 +02:00
version: "3.8"
services:
hass:
2021-12-20 11:27:02 +02:00
container_name: hass
image: homeassistant/home-assistant:stable
2021-11-08 11:25:37 +02:00
volumes:
2021-12-20 11:27:02 +02:00
- ./data:/config
- /dev/bus/usb:/dev/bus/usb
- /var/run/dbus:/var/run/dbus
2021-11-08 12:40:53 +02:00
network_mode: host
2021-12-20 11:27:02 +02:00
privileged: true
2021-11-08 11:25:37 +02:00
restart: unless-stopped