16 lines
389 B
YAML
16 lines
389 B
YAML
name: homeassistant
|
|
services:
|
|
homeassistant:
|
|
image: lscr.io/linuxserver/homeassistant:latest
|
|
container_name: homeassistant
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Africa/Tripoli
|
|
volumes:
|
|
- C:\Data\AppData\homeassistant\config:/config
|
|
ports:
|
|
- 8123:8123
|
|
#devices:
|
|
# - /path/to/device:/path/to/device
|
|
restart: unless-stopped |