Files
home-assistant/docker-compose.yml
striker 19e0d4b1b1 Initial Home Assistant Container deployment
- docker-compose.yml: homeassistant/home-assistant:stable, bridge, 127.0.0.1:8123, journald
- config/ исключён из git (.gitignore)
- README + CLAUDE с описанием стека, деплоя, nginx-нюансов
2026-05-08 04:36:06 +03:00

23 lines
547 B
YAML

services:
homeassistant:
image: homeassistant/home-assistant:stable
container_name: home-assistant
restart: unless-stopped
ports:
- "127.0.0.1:8123:8123"
volumes:
- ./config:/config
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=Europe/Moscow
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8123/manifest.json"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
logging:
driver: journald
options:
tag: "{{.Name}}"