28 lines
789 B
YAML
28 lines
789 B
YAML
|
|
# Home Assistant + Wyoming voice pipeline for the PineVoice speakers.
|
||
|
|
# Deploy as a Portainer stack (inside the Umbrel Portainer DinD).
|
||
|
|
# /data/ paths persist across reboots (map to ~/umbrel/app-data/portainer/data/docker/).
|
||
|
|
services:
|
||
|
|
homeassistant:
|
||
|
|
image: homeassistant/home-assistant:2026.7.1
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "8123:8123"
|
||
|
|
environment:
|
||
|
|
- TZ=Europe/London
|
||
|
|
volumes:
|
||
|
|
- /data/homeassistant:/config
|
||
|
|
|
||
|
|
whisper:
|
||
|
|
image: rhasspy/wyoming-whisper:3.4.1
|
||
|
|
restart: unless-stopped
|
||
|
|
command: --model base-int8 --language en
|
||
|
|
volumes:
|
||
|
|
- /data/wyoming-whisper:/data
|
||
|
|
|
||
|
|
piper:
|
||
|
|
image: rhasspy/wyoming-piper:2.2.2
|
||
|
|
restart: unless-stopped
|
||
|
|
command: --voice en_GB-alba-medium
|
||
|
|
volumes:
|
||
|
|
- /data/wyoming-piper:/data
|