2023-02-15 21:45:31 +00:00
|
|
|
services:
|
2024-11-04 12:08:51 +00:00
|
|
|
|
2023-02-15 21:45:31 +00:00
|
|
|
homeassistant:
|
|
|
|
image: linuxserver/homeassistant:latest
|
|
|
|
container_name: homeassistant
|
|
|
|
network_mode: host
|
2024-11-04 12:08:51 +00:00
|
|
|
restart: unless-stopped
|
2023-02-15 21:45:31 +00:00
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
|
|
|
- TZ=Europe/Berlin
|
|
|
|
volumes:
|
2023-02-25 13:09:52 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homeassistant/config:/config
|
2023-02-15 21:45:31 +00:00
|
|
|
#ports:
|
2024-11-04 12:08:51 +00:00
|
|
|
# - 8123:8123 # optional of host network is used
|
2023-02-15 21:45:31 +00:00
|
|
|
#devices:
|
2024-11-04 12:08:51 +00:00
|
|
|
# - /path/to/device:/path/to/device #optional
|