home assistant 是一款基于python的智能家居开源系统 支持众多品牌的智能家居设备,可以轻松实现设备的语言控制,自动化等
官网链接:https://www.home-assistant.io/
这是官网的各端搭建教程:https://www.home-assistant.io/installation
下面是本人使用docker搭建的环境流程
前提条件:docker compose
创建compose.yml文件
Code: Select all
version: '3'
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- /Users/xxxx/config:/config
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
privileged: true
ports:
- "8123:8123"
volumes 挂载修改成本地的路径
使用docker-compose up -d命令构建和运行应用
使用docker ps 命令查看容器是否正常运行
使用浏览器打开主页
看到该注册账号页面 恭喜你 本地环境已经成功搭建完成。