17 lines
420 B
YAML
17 lines
420 B
YAML
version: '3'
|
|
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: homeassistant/home-assistant
|
|
volumes:
|
|
- /opt/homeassistant/config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /dev/serial/by-id:/dev/serial/by-id
|
|
devices:
|
|
- /dev/ttyACM0:/dev/ttyACM0
|
|
ports:
|
|
- 8123:8123
|
|
privileged: true
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
restart: unless-stopped |