-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
355 lines (334 loc) · 9.31 KB
/
docker-compose.yml
File metadata and controls
355 lines (334 loc) · 9.31 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
services:
postgres:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/csghub/postgres:15.10
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
POSTGRES_MULTIPLE_DATABASES: "starhub_server,csghub_casdoor,temporal,temporal_visibility,mirror"
ports:
- "5432:5432"
healthcheck:
test: pg_isready -U postgres -h 127.0.0.1
interval: 5s
volumes:
- ./data/pgdata:/var/lib/postgresql/data
networks:
- my_ce_network
memmachine_postgres:
image: docker.io/pgvector/pgvector:pg16
environment:
POSTGRES_DB: "memmachine"
POSTGRES_USER: "memmachine"
POSTGRES_PASSWORD: "memmachine_password"
ports:
- "5433:5432"
healthcheck:
test: pg_isready -U memmachine -h 127.0.0.1
interval: 5s
volumes:
- ./data/memmachine/pgdata:/var/lib/postgresql/data
networks:
- my_ce_network
memmachine_neo4j:
image: docker.io/neo4j:5.23-community
environment:
NEO4J_AUTH: "neo4j/neo4j_password"
ports:
- "7474:7474"
- "7687:7687"
volumes:
- ./data/memmachine/neo4j/data:/data
- ./data/memmachine/neo4j/logs:/logs
- ./data/memmachine/neo4j/import:/var/lib/neo4j/import
- ./data/memmachine/neo4j/plugins:/plugins
networks:
- my_ce_network
memmachine:
image: memmachine/memmachine:v0.2.3-cpu
depends_on:
- memmachine_postgres
- memmachine_neo4j
environment:
POSTGRES_HOST: memmachine_postgres
POSTGRES_PORT: "5432"
POSTGRES_USER: "memmachine"
POSTGRES_PASSWORD: "memmachine_password"
POSTGRES_DB: "memmachine"
NEO4J_HOST: memmachine_neo4j
NEO4J_PORT: "7687"
NEO4J_USER: "neo4j"
NEO4J_PASSWORD: "neo4j_password"
MEMORY_CONFIG: /app/configuration.yml
HOST: 0.0.0.0
ports:
- "8081:8080"
volumes:
- ./data/memmachine/configuration.yml:/app/configuration.yml:ro
- ./data/memmachine/logs:/tmp/memory_logs
networks:
- my_ce_network
minio:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/bitnami/minio:2023
environment:
MINIO_ROOT_USER: "admin"
MINIO_ROOT_PASSWORD: "Password_123"
MINIO_SCHEME: "http"
MINIO_DEFAULT_BUCKETS: opencsg-server-lfs:public,opencsg-portal-storage:public,loki-data:public
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ./data/minio_data:/bitnami/minio/data
networks:
- my_ce_network
redis:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/redis:7.2.5
ports:
- "6379:6379"
volumes:
- ./data/redis:/data
healthcheck:
test: redis-cli ping
interval: 1s
timeout: 3s
retries: 30
networks:
- my_ce_network
gitaly:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/gitaly:v16.4.6
command:
["bash", "-c", "mkdir -p /home/git/repositories && rm -rf /srv/gitlab-shell/hooks/* && touch /srv/gitlab-shell/.gitlab_shell_secret && exec /usr/bin/env GITALY_CONFIG_FILE=/home/gitaly.config.toml /scripts/process-wrapper"]
environment:
- GITALY_CONFIG_FILE=/home/gitaly.config.toml
user: "root"
ports:
- '8075:8075'
volumes:
- ./data/gitaly.config.toml:/home/gitaly.config.toml
- ./data/gitaly/git/repositories:/home/git/repositories
- ./data/gitaly/git/hooks:/home/git/hooks
- ./data/gitaly/log:/var/log/gitaly
networks:
- my_ce_network
natsmaster:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/csghub_nats:2.10.16
deploy:
resources:
limits:
cpus: '1'
memory: 1G
reservations:
cpus: '1'
memory: 1G
ports:
- "4222:4222"
- "6222:6222"
- "8222:8222"
volumes:
- ./data/nats-server.conf:/nats-server.conf
- ./data/jetstream:/data/jetstream
restart: always
networks:
- my_ce_network
temporal:
depends_on:
- postgres
environment:
- DB=postgres12
- DB_PORT=5432
- POSTGRES_USER=postgres
- POSTGRES_PWD=postgres
- DEFAULT_NAMESPACE_RETENTION=7d
- POSTGRES_SEEDS=postgres
# uncomment to use docker hub
# image: temporalio/auto-setup:1.25.1
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/temporalio/auto-setup:1.25.1
ports:
- 7233:7233
networks:
- my_ce_network
temporal-ui:
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CORS_ORIGINS=http://localhost:3000
# uncomment to use docker hub
# image: temporalio/ui:2.30.3
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/temporalio/ui:2.30.3
ports:
- 8180:8080
networks:
- my_ce_network
loki:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/grafana/loki:3.1.0
container_name: loki
restart: unless-stopped
command:
- "-config.file=/etc/loki/loki-config.yaml"
ports:
- "3100:3100"
volumes:
- ./data/loki-data:/data
- ./data/loki-config.yaml:/etc/loki/loki-config.yaml
networks:
- my_ce_network
# default user: root/Root@1234
casdoor:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/casbin/casdoor:v1.733.0
depends_on:
postgres:
condition: service_healthy
restart: true
environment:
RUNNING_IN_DOCKER: true
volumes:
- ./data/casdoor/conf:/conf
restart: always
healthcheck:
test: [ "CMD", "nc", "-z", "localhost", "8000" ]
interval: 10s
timeout: 10s
retries: 30
networks:
- my_ce_network
starhub_server:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
depends_on:
- postgres
- memmachine
- gitaly
- minio
- redis
- natsmaster
- temporal
- loki
entrypoint:
- /starhub-bin/starhub
- start
- server
- "--config=/starhub-bin/config/config.toml"
ports:
- "8080:8080"
volumes:
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
user_server:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
entrypoint:
- /starhub-bin/starhub
- user
- launch
- "--config=/starhub-bin/config/config.toml"
depends_on:
- postgres
- starhub_server
ports:
- "8088:8088"
volumes:
- ./data/casdoor/:/starhub-bin/casdoor/:r
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
account_server:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
entrypoint:
- /starhub-bin/starhub
- accounting
- launch
- "--config=/starhub-bin/config/config.toml"
depends_on:
- postgres
- natsmaster
- starhub_server
ports:
- "8086:8086"
volumes:
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
dataviewer:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
deploy:
resources:
limits:
cpus: '2'
memory: 2G
entrypoint:
- /starhub-bin/starhub
- dataviewer
- launch
- "--config=/starhub-bin/config/config.toml"
depends_on:
- postgres
- gitaly
- starhub_server
ports:
- "8093:8093"
volumes:
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
notification_server:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
entrypoint:
- /starhub-bin/starhub
- notification
- launch
- --config=/starhub-bin/config/config.toml
depends_on:
- postgres
- starhub_server
ports:
- "8095:8095"
volumes:
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
starhub_proxy:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
entrypoint:
- /starhub-bin/starhub
- start
- rproxy
- --config=/starhub-bin/config/config.toml
depends_on:
- postgres
- starhub_server
ports:
- "8083:8083"
volumes:
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
# Uncomment starhub_runner when you have Kubernetes config file
# starhub_runner:
# image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
# entrypoint:
# - /starhub-bin/starhub
# - deploy
# - runner
# - --config=/starhub-bin/config/config.toml
# ports:
# - "8082:8082"
# volumes:
# - ./data/kube:/root/.kube:r
# - ./data/config.toml:/starhub-bin/config/config.toml:r
# networks:
# - my_ce_network
temporal_worker:
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub-server:latest
entrypoint:
- /starhub-bin/starhub
- temporal-worker
- launch
- --config=/starhub-bin/config/config.toml
restart: always
volumes:
- ./data/config.toml:/starhub-bin/config/config.toml:r
networks:
- my_ce_network
networks:
my_ce_network:
driver: bridge