2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-04 07:27:13 +08:00
Files
templates/home-assistant/docker-compose.yml
renovate[bot] 15b8453b0e chore(deps): update homeassistant/home-assistant docker tag to v2026.1.3 (#13)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-24 02:10:01 +00:00

20 lines
472 B
YAML

services:
homeassistant:
image: homeassistant/home-assistant:2026.1.3
restart: unless-stopped
network_mode: "host"
cap_add:
- NET_ADMIN
- NET_RAW
volumes:
- "./data:/config"
- "/run/dbus:/run/dbus:ro"
environment:
- TZ=${HOME_ASSISTANT_TIME_ZONE}
healthcheck:
test: ["CMD-SHELL", "curl -fsSL http://localhost:8123 || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s