-
Notifications
You must be signed in to change notification settings - Fork 58
/
docker-compose.yml
50 lines (50 loc) · 1.13 KB
/
docker-compose.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
version: '3'
services:
nginx:
image: nginx
restart: always
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
ports:
- 80:80
frontend:
image: botium/botium-speech-frontend:${TAG}
restart: always
user: 1000:1000
environment:
BOTIUM_API_TOKENS:
BOTIUM_SPEECH_PROVIDER_TTS: marytts
BOTIUM_SPEECH_PROVIDER_STT: kaldi
BOTIUM_SPEECH_GOOGLE_CLIENT_EMAIL:
BOTIUM_SPEECH_GOOGLE_PRIVATE_KEY:
volumes:
- "./frontend/resources:/app/resources"
watcher:
image: botium/botium-speech-watcher:${TAG}
restart: always
user: 1000:1000
volumes:
- "./watcher:/app/watch"
- logs:/app/logs
stt-en:
image: botium/botium-speech-kaldi-en:${TAG}
restart: always
user: 1000:1000
volumes:
- logs:/opt/logs
stt-de:
image: botium/botium-speech-kaldi-de:${TAG}
restart: always
user: 1000:1000
volumes:
- logs:/opt/logs
tts:
image: botium/botium-speech-marytts:${TAG}
restart: always
user: 1000:1000
dictate:
image: botium/botium-speech-dictate:${TAG}
restart: always
user: 1000:1000
volumes:
logs: