|
本帖最后由 星河、 于 2024-10-28 15:51 编辑
version: '3'
services:
homeassistant:
container_name: homeassistant
image: homeassistant/home-assistant:stable
volumes:
- /path/to/your/config:/config
- /etc/localtime:/etc/localtime:ro
ports:
- "8123:8123"
- "6021:21"
- "6022:22"
restart: unless-stopped
network_mode: host
environment:
- TZ=Asia/Shanghai # 设置时区,根据需要修改
以上代码
|
|