17 lines
368 B
YAML
17 lines
368 B
YAML
version: '3'
|
|
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
|
volumes:
|
|
- config:/config
|
|
# - /run/dbus:/run/dbus:ro
|
|
restart: unless-stopped
|
|
privileged: true
|
|
network_mode: host
|
|
environment:
|
|
TZ: "America/Chicago"
|
|
ports:
|
|
- "8123:8123"
|
|
volumes:
|
|
config:
|