Hacker News new | past | comments | ask | show | jobs | submit login

> I want to go the other way and say DO NOT use HAOS if you know anything about docker. If you have ANY experience working under linux/docker just don't bother with HAOS and save yourself the headache. You will have an incredibly better experience just running your HASS docker container by yourself.

If you don’t use HAOS you miss out on Home Assistant add-ons, which themselves sometimes integrate in Home Assistant.




You can install all of them as stand-alone docker containers.


Is there any documentation on how to do this, I've always wanted to try the voice related ones but there is no documentation to run them outside of the haos setup


Basically you need to run this docker compose file from below and enable "Wyoming" integration in HA (I think it'll detect piper & whisper and propose it automatically). Don't worry about picking model too much - you can change it later in HA UI.

  version: "3"
  services:
  ## wyoming
    whisper:
      container_name: whisper
      image: rhasspy/wyoming-whisper
      command: --model base-int8 --language en
      volumes:
        - ./whisper-data:/data
      environment:
        - TZ=Europe/Brussels
      restart: unless-stopped
      ports:
        - 10300:10300

    piper:
      container_name: piper
      image: rhasspy/wyoming-piper
      command: --voice fr-siwis-medium
      volumes:
        - ./piper-data:/data
      environment:
        - TZ=Europe/Brussels
      restart: unless-stopped
      ports:
        - 10200:10200




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: