23 lines
757 B
YAML
23 lines
757 B
YAML
|
|
# Wyoming Piper — text-to-speech over the Wyoming protocol.
|
||
|
|
# https://github.com/rhasspy/wyoming-piper
|
||
|
|
#
|
||
|
|
# Wyoming is Home Assistant's voice protocol; it's also consumable by any
|
||
|
|
# Wyoming client. No web UI — this is a protocol server on TCP :10200.
|
||
|
|
#
|
||
|
|
# Voice selection: en_US-lessac-medium is the most balanced English voice
|
||
|
|
# (~63 MB, natural prosody). Browse alternatives at
|
||
|
|
# https://github.com/rhasspy/piper/blob/master/VOICES.md — pulled into
|
||
|
|
# /srv/docker/piper/data on first start.
|
||
|
|
services:
|
||
|
|
piper:
|
||
|
|
image: rhasspy/wyoming-piper:latest
|
||
|
|
container_name: wyoming-piper
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "10200:10200"
|
||
|
|
volumes:
|
||
|
|
- /srv/docker/piper/data:/data
|
||
|
|
command:
|
||
|
|
- --voice
|
||
|
|
- en_US-lessac-medium
|