Files
homeassistant/docker-compose.yaml
T
mattspeer b9fb6ada96 Update docker-compose.yaml
removed traefik labels and network since host network is used in homeassistant.  Traefik is implemented by a file provider.
2026-05-30 23:28:32 -05:00

18 lines
389 B
YAML

---
services:
homeassistant:
image: lscr.io/linuxserver/homeassistant:latest
container_name: homeassistant
network_mode: host
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- /srv/docker/homeassistant:/config
ports:
- 8123:8123
# devices:
# - /path/to/device:/path/to/device #optional
restart: always