Created
October 22, 2023 02:45
-
-
Save trisweb/dbfce06d86518cd07b92328690e8fca6 to your computer and use it in GitHub Desktop.
Home Assistant Docker Compose Configurations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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'" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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