14 lines
337 B
YAML
14 lines
337 B
YAML
version: '3'
|
|
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
restart: always
|
|
image: homeassistant/home-assistant
|
|
volumes:
|
|
- /opt/homeassistant/config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "192.168.0.111:8123:8123"
|
|
privileged: true
|
|
environment:
|
|
- TZ=Europe/Berlin |