-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·68 lines (64 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
version: '3.8'
services:
whisper_asr_node:
image: naren200/whisper_asr_node:v1
build:
context: ./Dockerfiles
dockerfile: Dockerfile_whisper_asr
container_name: whisper_asr_node
environment:
- AUDIO_FILE=${AUDIO_FILE}
volumes:
- "${LOCAL_ROS_WS}/whisper.cpp:/root/ros2_ws/src/speech-llm-speech/whisper.cpp"
- "${LOCAL_ROS_WS}/whisper_asr:/root/ros2_ws/src/speech-llm-speech/whisper_asr"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
init: true
privileged: true
stdin_open: true
tty: true
google_tts_node:
image: naren200/google_tts_node:v1
build:
context: ./Dockerfiles
dockerfile: Dockerfile_google_tts
container_name: google_tts_node
volumes:
- "${LOCAL_ROS_WS}/google_tts:/root/ros2_ws/src/speech-llm-speech/google_tts"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
init: true
privileged: true
stdin_open: true
tty: true
decision_maker_node:
image: naren200/decision_maker_node:v1
build:
context: ./Dockerfiles
dockerfile: Dockerfile_decision_maker
container_name: decision_maker_node
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
- HF_API_KEY=${HF_API_KEY}
- OLLAMA_MODEL=${OLLAMA_MODEL}
- OPENAI_MODEL=${OPENAI_MODEL}
- HUGGINGFACE_MODEL=${HUGGINGFACE_MODEL}
- LLM_SEQUENCE=${LLM_SEQUENCE}
- MOCK_MODE=${MOCK_MODE}
volumes:
- "${LOCAL_ROS_WS}/decision_maker:/root/ros2_ws/src/speech-llm-speech/decision_maker"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
init: true
privileged: true
stdin_open: true
tty: true