Files
docker-compose/homeassistant/docker-compose.yml
T

26 lines
740 B
YAML
Raw Normal View History

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-13 18:35:45 +05:30
image: docker.io/homeassistant/home-assistant:2025.7.1
restart: unless-stopped
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
- /etc/localtime:/etc/localtime:ro # Sync host timezone
# Network port configuration
2025-07-09 13:50:02 +05:30
ports:
2025-07-14 12:48:15 +05:30
- ${PORT}:8123 # Web interface port
# Network configuration
2025-07-09 13:49:13 +05:30
networks:
2025-07-14 12:48:15 +05:30
- frontend # Connects to frontend network
2025-07-09 13:49:13 +05:30
2025-07-14 12:48:15 +05:30
# External network definition
2025-07-09 13:49:13 +05:30
networks:
frontend:
2025-07-14 12:48:15 +05:30
external: true # Uses pre-existing frontend network