b9fb6ada96
removed traefik labels and network since host network is used in homeassistant. Traefik is implemented by a file provider.
18 lines
389 B
YAML
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
|