HomeAssistant

From BITPlan Wiki
Revision as of 08:33, 7 May 2023 by Wf (talk | contribs) (Created page with "= Docker = <source lang='bash'> docker pull homeassistant/home-assistant mkdir -p $HOME/source/docker/homeassistant mkdir -p $HOME/source/docker/homeassistant/config cat compo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Docker

docker pull homeassistant/home-assistant
mkdir -p $HOME/source/docker/homeassistant
mkdir -p $HOME/source/docker/homeassistant/config
cat compose.yml 
version: '3'
services:
  homeassistant:
    container_name: homeassistant
    image: "ghcr.io/home-assistant/home-assistant:stable"
    volumes:
      - /home/wf/source/docker/homeassistant/config:/config
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped
    privileged: true
    network_mode: host
docker compose up

MQTT

Links

Integrations