17 lines
418 B
YAML
17 lines
418 B
YAML
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: ghcr.io/home-assistant/home-assistant:stable
|
|
volumes:
|
|
- /run/dbus:/run/dbus:ro
|
|
- /var/lib/docker/volumes/homeassistant/data:/data
|
|
- /var/lib/docker/volumes/homeassistant/config:/config
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
network_mode: bridge
|
|
ports:
|
|
- "8123:8123"
|
|
privileged: true
|
|
restart: always
|
|
|