Skip to content

Instantly share code, notes, and snippets.

@trisweb
Created October 22, 2023 02:45
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trisweb/dbfce06d86518cd07b92328690e8fca6 to your computer and use it in GitHub Desktop.
Save trisweb/dbfce06d86518cd07b92328690e8fca6 to your computer and use it in GitHub Desktop.
Home Assistant Docker Compose Configurations
# Wyoming OpenWakeWord
version: '3.3'
services:
wyoming-openwakeword:
restart: unless-stopped
volumes:
- './data:/data'
ports:
- '10400:10400'
image: rhasspy/wyoming-openwakeword
# Try other models here: https://huggingface.co/spaces/davidscripka/openWakeWord
command: " --preload-model 'ok_nabu'"
# Wyoming Piper TTS Server
version: '3.3'
services:
wyoming-piper:
restart: unless-stopped
ports:
- '10200:10200'
volumes:
- './data:/data'
image: rhasspy/wyoming-piper
# See samples at: https://rhasspy.github.io/piper-samples/
# Should just be able to enter the voice here and it will automatically download the appropriate files.
command: --voice en-us-amy-low
# Wyoming-Whisper STT Server
version: '3.3'
services:
wyoming-whisper:
restart: unless-stopped
ports:
- '10300:10300'
volumes:
- './data:/data'
image: rhasspy/wyoming-whisper
# Model appropriate for decent CPUs and small GPUs.
# Options: tiny-int8|tiny|base|base-int8|small-int8|small|medium-int8
command: --model base-int8 --language en
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment