User Tools

Site Tools


homeautomatisation:homeassistant

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revisionBoth sides next revision
homeautomatisation:homeassistant [2023/02/26 14:19] – created illuhomeautomatisation:homeassistant [2023/02/26 14:22] illu
Line 2: Line 2:
 Going away from iobroker i'm switching to https://www.home-assistant.io/. Going away from iobroker i'm switching to https://www.home-assistant.io/.
  
-My +My docker-compose.yaml: 
 +<code> 
 +version: '3' 
 +services: 
 +  homeassistant: 
 +    container_name: home-assistant 
 +    image: homeassistant/home-assistant 
 +    volumes: 
 +      - .:/config 
 +      - /etc/localtime:/etc/localtime:ro 
 +      - /dev/serial/by-id:/dev/serial/by-id 
 +    devices: 
 +      - /dev/ttyACM0:/dev/ttyACM0 
 +    restart: unless-stopped 
 +    privileged: true 
 +    network_mode: host 
 +  nodered: 
 +    container_name: nodered 
 +    image: nodered/node-red 
 +    restart: unless-stopped 
 +    ports: 
 +      - "1880:1880/tcp" 
 +    environment: 
 +      - TZ=Europe/Brussels 
 +    volumes: 
 +      - /var/opt/nodered/data:/data 
 +    depends_on: 
 +      - homeassistant 
 +</code> 
 + 
 +Node Red 
 +Needs lokal Plugin for Alexa: https://flows.nodered.org/node/node-red-contrib-alexa-local