Files
homeprod/docker/home/home-assistant/docker-compose.yml
Valentin HAUDIQUET 057cdae80c Merge pull request #91 from vhaudiquet/dependabot/docker_compose/docker/home/home-assistant/home-assistant/home-assistant-2025.8.3
build(deps): bump home-assistant/home-assistant from 2025.8.2 to 2025.8.3 in /docker/home/home-assistant
2025-08-28 11:46:08 +02:00

33 lines
680 B
YAML

services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:2025.8.3"
ports:
- "8123"
networks:
- default
- proxy
environment:
- TZ=Europe/Paris
volumes:
- ha_config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.homeassistant.rule=Host(`homeassistant.lan`)"
volumes:
ha_config:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '/app/home-assistant/config'
networks:
proxy:
external: true
name: proxy