19 lines
489 B
YAML
Executable File
19 lines
489 B
YAML
Executable File
services:
|
|
homeassistant:
|
|
image: ghcr.io/home-assistant/home-assistant:latest
|
|
container_name: homeassistant
|
|
network_mode: host
|
|
restart: unless-stopped
|
|
privileged: true
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
volumes:
|
|
- ./config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
# Optional: Bluetooth-Unterstützung
|
|
- /run/dbus:/run/dbus:ro
|
|
devices:
|
|
# Passe das Device an deinen Stick an!
|
|
- /dev/ttyUSB0:/dev/ttyUSB0
|
|
networks: {}
|