19 lines
415 B
YAML
19 lines
415 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
homeassistant:
|
|
image: lscr.io/linuxserver/homeassistant:latest
|
|
container_name: homeassistant
|
|
network_mode: host
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Chicago
|
|
volumes:
|
|
- /home/mattspeer/docker/homeassistant:/config
|
|
ports:
|
|
- 8123:8123
|
|
# devices:
|
|
# - /path/to/device:/path/to/device #optional
|
|
restart: always
|