mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-03-03 02:27:00 +00:00
18 lines
563 B
YAML
18 lines
563 B
YAML
services:
|
|
homeassistant:
|
|
image: linuxserver/homeassistant
|
|
container_name: homeassistant
|
|
network_mode: host # Required for device discovery
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Chicago
|
|
volumes:
|
|
- /home/pi/home-assistant:/config # Config directory
|
|
- /mnt/nfs-share:/extstorage # External storage mounted directly for some integrations
|
|
#ports:
|
|
# - 8123:8123 #optional
|
|
#devices:
|
|
# - /path/to/device:/path/to/device
|
|
restart: unless-stopped
|