一、Home Assistant安装
两种方式,选一即可
(1)Docker运行Home Assistant容器
docker run -d \
--name homeassistant \
--privileged \
--restart=unless-stopped \
-e TZ=MY_TIME_ZONE \
-v /PATH_TO_YOUR_CONFIG:/config \
-v /run/dbus:/run/dbus:ro \
--network=host \
ghcr.io/home-assistant/home-assistant:stable
(2)Docker-compose运行
docker-compose.yml文件:
version: '3'
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- /PATH_TO_YOUR_CONFIG:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
restart: unless-stopped
privileged: true
network_mode: host
运行容器:
docker compose up -d
二、Web管理
http://<host>:8123
三、HACS安装
Github项目地址:https://github.com/hacs/integration/releases
网盘地址:https://cloud.orcy.net.cn:5002/s/gRHAY3tAStPSiiP
在/PATH_TO_YOUR_CONFIG下创建custom_components和www文件夹,将hacs解压后上传到/PATH_TO_YOUR_CONFIG/custom_components文件夹下
├── custom_components
│ ├── hacs
│ │ ├── base.py
│ │ ├── config_flow.py
│ │ ├── const.py
│ │ ├── data_client.py
│ │ ├── diagnostics.py
│ │ ├── entity.py
│ │ ├── enums.py
│ │ ├── exceptions.py
│ │ ├── frontend.py
│ │ ├── hacs_frontend
重启Home Assistant
在集成—>添加集成—>搜索 HACS添加即可
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)