22 lines
444 B
YAML
22 lines
444 B
YAML
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
|
volumes:
|
|
- ./config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /run/dbus:/run/dbus:ro
|
|
restart: unless-stopped
|
|
privileged: false
|
|
ports:
|
|
- '8123:8123'
|
|
networks:
|
|
- 'default'
|
|
- 'homelab'
|
|
environment:
|
|
TZ: America/Detroit
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|