-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
42 lines (34 loc) · 850 Bytes
/
docker-compose.yaml
File metadata and controls
42 lines (34 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '3.9'
services:
faster-whisper:
image: lscr.io/linuxserver/faster-whisper:latest
container_name: faster-whisper
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
- WHISPER_MODEL=large-v3
- WHISPER_LANG=nl
volumes:
- ./whisper-data:/config
ports:
- "10300:10300"
restart: unless-stopped
piper:
image: rhasspy/wyoming-piper:latest
container_name: piper
command: ["--voice", "nl_BE-nathalie-medium"]
volumes:
- ./piper/data:/data
ports:
- "10200:10200"
restart: unless-stopped
openwakeword:
image: rhasspy/wyoming-openwakeword:latest
container_name: openwakeword
command: ["--custom-model-dir", "/data"]
volumes:
- ./openwakeword:/data
ports:
- "10400:10400"
restart: unless-stopped