mirror of
https://github.com/michivonah/docker.git
synced 2025-12-22 20:36:27 +01:00
14 lines
395 B
YAML
14 lines
395 B
YAML
version: '3'
|
|
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: "homeassistant/home-assistant:latest"
|
|
volumes:
|
|
- ./data:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /run/dbus:/run/dbus:ro # Bluetooth
|
|
#devices: # Optional if you use a zigbee communicator
|
|
# - /dev/ttyUSB0
|
|
restart: unless-stopped
|
|
privileged: true
|
|
network_mode: host
|