-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathdocker-compose-bot-webhook.yml
More file actions
229 lines (214 loc) · 5.91 KB
/
docker-compose-bot-webhook.yml
File metadata and controls
229 lines (214 loc) · 5.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
services:
mongo:
image: "${PLATFORM}mongo:${MONGO}"
volumes:
- tockmongo:/data/db
ports:
- "27017:27017"
command: --bind_ip_all --port 27017 --replSet "tock"
healthcheck:
test: [ "CMD-SHELL", "mongosh --host mongo:27017 --quiet --eval 'try { rs.status() } catch(e) { quit(1) }'" ]
interval: 5s
timeout: 5s
retries: 20
start_period: 10s
mongo2:
image: "${PLATFORM}mongo:${MONGO}"
depends_on:
- mongo
volumes:
- tockmongo2:/data/db
ports:
- "27018:27018"
command: --bind_ip_all --port 27018 --replSet "tock"
healthcheck:
test: [ "CMD-SHELL", "mongosh --host mongo2:27018 --quiet --eval 'try { rs.status() } catch(e) { quit(1) }'" ]
interval: 5s
timeout: 5s
retries: 20
start_period: 10s
mongo3:
image: "${PLATFORM}mongo:${MONGO}"
depends_on:
- mongo
- mongo2
volumes:
- tockmongo3:/data/db
ports:
- "27019:27019"
command: --bind_ip_all --port 27019 --replSet "tock"
healthcheck:
test: [ "CMD-SHELL", "mongosh --host mongo3:27019 --quiet --eval 'try { rs.status() } catch(e) { quit(1) }'" ]
interval: 5s
timeout: 5s
retries: 20
start_period: 10s
mongo-setup:
container_name: "mongo-setup"
image: "${PLATFORM}mongo:${MONGO}"
depends_on:
- "mongo"
- "mongo2"
- "mongo3"
links:
- mongo:mongo
- mongo2:mongo2
- mongo3:mongo3
volumes:
- ./scripts:/scripts
environment:
- MONGO1=mongo
- MONGO2=mongo2
- MONGO3=mongo3
- RS=tock
entrypoint: [ "/scripts/setup.sh" ]
build_worker:
image: "tock/build_worker:${TAG}"
depends_on:
mongo:
condition: service_healthy
mongo2:
condition: service_healthy
mongo3:
condition: service_healthy
environment:
- tock_mongo_url=mongodb://mongo:27017,mongo2:27018,mongo3:27019/?replicaSet=tock
- tock_env=prod
- JAVA_ARGS=-Xmx1g -XX:MaxMetaspaceSize=256m
# - tock_default_log_level=warn
# - tock_service_log_level=info
# - tock_database_log_level=warn
duckling:
image: "tock/duckling:${TAG}"
environment:
- tock_env=prod
expose:
- "8080"
kotlin_compiler:
image: "tock/kotlin_compiler:${TAG}"
environment:
- tock_env=prod
- tock_kotlin_compiler_classpath=/maven
# - tock_default_log_level=warn
# - tock_service_log_level=info
# - tock_database_log_level=warn
expose:
- "8080"
admin_web:
image: "tock/bot_admin:${TAG}"
depends_on:
mongo:
condition: service_healthy
mongo2:
condition: service_healthy
mongo3:
condition: service_healthy
duckling:
condition: service_started
kotlin_compiler:
condition: service_started
environment:
- tock_mongo_url=mongodb://mongo:27017,mongo2:27018,mongo3:27019/?replicaSet=tock
- nlp_duckling_url=http://duckling:8080
- tock_env=prod
- tock_bot_admin_rest_default_base_url=http://bot_api:8080
- tock_bot_compiler_service_url=http://kotlin_compiler:8080
- tock_configuration_bot_default_base_url=http://bot_api:8080
#remove this in production
- tock_https_env=false
- botadminverticle_body_limit=-1
# - tock_default_log_level=warn
# - tock_service_log_level=info
# - tock_database_log_level=warn
ports:
- "80:8080"
nlp_api:
image: "tock/nlp_api:${TAG}"
depends_on:
mongo:
condition: service_healthy
mongo2:
condition: service_healthy
mongo3:
condition: service_healthy
duckling:
condition: service_started
environment:
- tock_mongo_url=mongodb://mongo:27017,mongo2:27018,mongo3:27019/?replicaSet=tock
- nlp_duckling_url=http://duckling:8080
- tock_env=prod
- tock_web_use_default_cors_handler=true
- tock_web_use_default_cors_handler_with_credentials=false
- tock_web_use_default_cors_handler_url=*
# - tock_default_log_level=warn
# - tock_service_log_level=info
# - tock_database_log_level=warn
ports:
- "8888:8080"
bot_api:
image: "tock/bot_api:${TAG}"
depends_on:
mongo:
condition: service_healthy
mongo2:
condition: service_healthy
mongo3:
condition: service_healthy
nlp_api:
condition: service_started
environment:
- tock_mongo_url=mongodb://mongo:27017,mongo2:27018,mongo3:27019/?replicaSet=tock
- tock_nlp_service_url=http://nlp_api:8080
- tock_env=integ
- tock_websocket_enabled=false
- tock_web_sse=true
- tock_timeline_persistence_synchronous_mode=false
- tock_timeline_persistence_asynchronous_mode=true
- tock_web_enable_markdown=true
# - tock_default_log_level=warn
# - tock_service_log_level=info
# - tock_database_log_level=warn
ports:
- "8080:8080"
demo_api_webhook:
image: "tock/bot_api_webhook:${TAG}"
depends_on:
- bot_api
environment:
- tock_env=integ
# - tock_default_log_level=warn
# - tock_service_log_level=info
# - tock_database_log_level=warn
ports:
- "8887:8887"
open_web_ui:
image: "ghcr.io/open-webui/open-webui:main"
restart: unless-stopped
depends_on:
- demo_api_webhook
- bot_api
environment:
- PORT=3000
- OFFLINE_MODE=True
- OPENAI_API_KEY=NONE
- OPENAI_API_BASE_URL=http://bot_api:8080/io/app/new_assistant/openai
- ENABLE_FORWARD_USER_INFO_HEADERS=true
ports:
- "3000:3000"
volumes:
- openwebui_data:/app/backend/data
web:
image: "tock/bot_api_web:${TAG}"
depends_on:
- demo_api_webhook
- bot_api
environment:
- PORT=3001
- WEB_CONNECTOR_PATH=io/app/new_assistant/web
ports:
- "3001:3001"
volumes:
tockmongo:
tockmongo2:
tockmongo3:
openwebui_data: