User Tools

Site Tools


homeautomatisation:homeassistant

This is an old revision of the document!


Home Assistant Going away from iobroker i'm switching to https://www.home-assistant.io/.

My docker-compose.yaml:

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

Node Red Needs lokal Plugin for Alexa: https://flows.nodered.org/node/node-red-contrib-alexa-local

homeautomatisation/homeassistant.1677417762.txt.gz ยท Last modified: 2023/02/26 14:22 by illu