2025-07-14 12:48:15 +05:30
|
|
|
# Home Assistant Smart Home Platform Configuration
|
2025-06-18 16:12:48 +05:30
|
|
|
services:
|
|
|
|
|
homeassistant:
|
2025-07-14 12:48:15 +05:30
|
|
|
# Basic container configuration
|
2025-06-18 16:12:48 +05:30
|
|
|
container_name: homeassistant
|
2025-07-14 17:45:31 +00:00
|
|
|
image: docker.io/homeassistant/home-assistant:2025.7.2 # Official Home Assistant image
|
2025-07-14 22:11:32 +05:30
|
|
|
restart: unless-stopped # Auto-restart on failure
|
|
|
|
|
|
|
|
|
|
# Network configuration (host mode for full local network access)
|
|
|
|
|
network_mode: host # Required for discovering local devices and integrations
|
2025-07-14 12:48:15 +05:30
|
|
|
|
|
|
|
|
# Persistent storage and system configuration
|
2025-06-18 16:12:48 +05:30
|
|
|
volumes:
|
2025-07-14 12:48:15 +05:30
|
|
|
- ${APPDATA_PATH}/homeassistant/config:/config # Configuration files
|
2025-07-14 22:11:32 +05:30
|
|
|
- /etc/localtime:/etc/localtime:ro # Sync host timezone for proper logging
|