镜像地址:ghcr.io/home-assistant/home-assistant:latest
services:
homeassistant:
container_name: home-assistant
image: ghcr.io/home-assistant/home-assistant:latest
volumes:
- /volume1/docker/homeassistant/config:/config # 持久化配置文件,替换路径
- /volume1/docker/homeassistant/localtime:/etc/localtime:ro # 同步时区
environment:
- TZ=Asia/Shanghai # 设置时区,根据需求修改
ports:
- "8123:8123" # Home Assistant 默认端口
restart: unless-stopped
network_mode: host
评论