Files
docker-compose/home-assistant/compose.yaml
T

23 lines
617 B
YAML
Raw Normal View History

2025-06-18 16:12:48 +05:30
services:
2025-08-02 11:49:17 +05:30
home-assistant:
container_name: home-assistant
image: ghcr.io/home-assistant/home-assistant:2025.12.0@sha256:8951fcbb794da8f261e1639c668639bc90f9520b48099b5715f6d5fbfef08a0e
2025-07-19 20:30:14 +05:30
restart: unless-stopped
2025-06-18 16:12:48 +05:30
volumes:
2025-08-02 11:49:17 +05:30
- ${APPDATA_PATH}/home-assistant/config:/config
2025-07-19 20:30:14 +05:30
- /etc/localtime:/etc/localtime:ro
2025-07-20 21:55:20 +05:30
ports:
- ${PORT}:8123
2025-08-02 11:49:17 +05:30
networks:
- frontend
2025-07-16 22:42:04 +05:30
healthcheck:
test: "curl --connect-timeout 10 --silent -f http://127.0.0.1:8123/ || exit 1"
2025-07-20 15:48:33 +05:30
interval: 20s
timeout: 10s
2025-07-16 22:42:04 +05:30
retries: 3
2025-07-20 15:48:33 +05:30
start_period: 30s
2025-08-02 11:49:17 +05:30
networks:
frontend:
external: true