-
Notifications
You must be signed in to change notification settings - Fork 58
/
docker-compose-dev.yml
51 lines (51 loc) · 1.13 KB
/
docker-compose-dev.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
51
version: '3'
services:
nginx:
image: nginx
restart: always
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
ports:
- 80:80
frontend:
build:
context: frontend
image: botium/botium-speech-frontend:develop
restart: always
volumes:
- "./frontend/resources:/app/resources"
watcher:
build:
context: watcher
image: botium/botium-speech-watcher:develop
restart: always
volumes:
- "./watcher:/app/watch"
- "./logs/watcher:/app/logs"
stt-en:
build:
context: stt
dockerfile: Dockerfile.kaldi.en
image: botium/botium-speech-kaldi-en:develop
restart: always
volumes:
- "./logs/stt-en:/opt/logs"
stt-de:
build:
context: stt
dockerfile: Dockerfile.kaldi.de
image: botium/botium-speech-kaldi-de:develop
restart: always
volumes:
- "./logs/stt-de:/opt/logs"
tts:
build:
context: tts
dockerfile: Dockerfile.marytts
image: botium/botium-speech-marytts:develop
restart: always
dictate:
build:
context: dictate
image: botium/botium-speech-dictate:develop
restart: always