-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
41 lines (41 loc) · 1.11 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
version: "3.7"
services:
backend:
container_name: ona-backend
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "5678:5678"
user: ona
environment:
VOSK_SERVER_HOST: vosk
volumes:
- ./skills:/opt/mycroft/skills
- ./logs:/var/log/mycroft
- ./backend:/opt/backend
- ./backend/supervisord-dev.conf:/opt/mycroft/supervisord.conf
- ./k8s/components/backend/mycroft.conf:/home/ona/.mycroft/mycroft.conf
- ./k8s/components/backend/identity2.json:/home/ona/.mycroft/identity/identity2.json
- ./spoken:/tmp/catotron
- ./mycroft-catala/mycroft-core/mycroft:/opt/mycroft/mycroft
catotron:
container_name: ona-catotron
image: assistent/catotron-cpu:0.0.2
environment:
LOAD_VOICE: both
ports:
- "9000:9000"
entrypoint: python server.py
vosk:
container_name: ona-vosk
image: assistent/kaldi-catala:0.0.2
environment:
VOSK_SAMPLE_RATE: 16000
ports:
- "5001:5001"
festival:
container_name: ona-festival
image: assistent/festival-tts:0.0.1
ports:
- "8100:8100"