1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/hass/docker-compose.yml

13 lines
283 B
YAML
Raw Normal View History

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