-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathdocker-compose-test.yml
More file actions
44 lines (44 loc) · 1.05 KB
/
docker-compose-test.yml
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
version: '3'
services:
# watcher:
# build:
# context: watcher
# image: botium/botium-speech-watcher:latest
# user: 1000:1000
# restart: always
# volumes:
# - "./watcher:/app/watch"
# - "./logs/watcher:/app/logs"
# frontend:
# build:
# context: frontend
# image: botium/botium-speech-frontend:latest
# user: 1000:1000
# restart: always
# environment:
# BOTIUM_API_TOKENS:
# BOTIUM_SPEECH_PROVIDER_TTS: picotts
# BOTIUM_SPEECH_PROVIDER_STT: kaldi
# volumes:
# - "./frontend/resources:/app/resources"
stt-en:
build:
context: stt
dockerfile: Dockerfile.kaldi.en
image: botium/botium-speech-kaldi-en:latest
user: 1000:1000
restart: always
volumes:
- "./logs/stt_en:/opt/logs"
# dictate:
# build:
# context: dictate
# image: botium/botium-speech-dictate:latest
# user: 1000:1000
# restart: always
# tts:
# build:
# context: tts
# dockerfile: Dockerfile.marytts
# image: botium/botium-speech-marytts:${TAG}
# restart: always