-
Notifications
You must be signed in to change notification settings - Fork 107
/
docker-compose-latest.yml
180 lines (165 loc) · 4.45 KB
/
docker-compose-latest.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
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
services:
api_gateway:
profiles:
- all
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-artifact
image: ${API_GATEWAY_IMAGE}:latest
environment:
LOG_LEVEL: DEBUG
mgmt_backend:
profiles:
- all
- exclude-api-gateway
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-artifact
image: ${MGMT_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
ports:
- ${MGMT_BACKEND_PRIVATEPORT}:${MGMT_BACKEND_PRIVATEPORT}
- ${MGMT_BACKEND_PUBLICPORT}:${MGMT_BACKEND_PUBLICPORT}
mgmt_backend_worker:
profiles:
- all
- exclude-api-gateway
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-artifact
image: ${MGMT_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
pipeline_backend:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-model
- exclude-artifact
image: ${PIPELINE_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
ports:
- ${PIPELINE_BACKEND_PRIVATEPORT}:${PIPELINE_BACKEND_PRIVATEPORT}
- ${PIPELINE_BACKEND_PUBLICPORT}:${PIPELINE_BACKEND_PUBLICPORT}
pipeline_backend_worker:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-model
- exclude-artifact
image: ${PIPELINE_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
model_backend_worker:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-artifact
image: ${MODEL_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
model_backend:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-artifact
image: ${MODEL_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
ports:
- ${MODEL_BACKEND_PRIVATEPORT}:${MODEL_BACKEND_PRIVATEPORT}
- ${MODEL_BACKEND_PUBLICPORT}:${MODEL_BACKEND_PUBLICPORT}
model_backend_init_model:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-artifact
image: ${MODEL_BACKEND_IMAGE}:latest
environment:
CFG_INITMODEL_ENABLED: ${INITMODEL_ENABLED}
CFG_INITMODEL_PATH: https://raw.githubusercontent.com/instill-ai/instill-core/main/model-hub/model_hub_test.json
artifact_backend:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-model
image: ${ARTIFACT_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
ports:
- ${ARTIFACT_BACKEND_PRIVATEPORT}:${ARTIFACT_BACKEND_PRIVATEPORT}
- ${ARTIFACT_BACKEND_PUBLICPORT}:${ARTIFACT_BACKEND_PUBLICPORT}
console:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-pipeline
- exclude-model
- exclude-artifact
image: ${CONSOLE_IMAGE}:latest
environment:
NEXT_PUBLIC_USAGE_COLLECTION_ENABLED: ${USAGE_ENABLED}
NEXT_PUBLIC_CONSOLE_EDITION: ${EDITION}
NODE_ENV: development
ports:
- ${CONSOLE_PORT}:${CONSOLE_PORT}
temporal:
ports:
- ${TEMPORAL_PORT}:7233
ray_server:
image: ${RAY_SERVER_IMAGE}:${RAY_LATEST_TAG}
ports:
- ${RAY_SERVER_CLIENT_PORT}:${RAY_SERVER_CLIENT_PORT}
- ${RAY_SERVER_DASHBOARD_PORT}:${RAY_SERVER_DASHBOARD_PORT}
- ${RAY_SERVER_SERVE_PORT}:${RAY_SERVER_SERVE_PORT}
- ${RAY_SERVER_SERVE_GRPC_PORT}:${RAY_SERVER_SERVE_GRPC_PORT}
- ${RAY_SERVER_PROMETHEUS_PORT}:${RAY_SERVER_PROMETHEUS_PORT}
pg_sql:
ports:
- ${POSTGRESQL_PORT}:5432
redis:
ports:
- ${REDIS_PORT}:6379
registry:
ports:
- ${REGISTRY_EXTERNAL_PORT}:5000
milvus:
ports:
- ${MILVUS_PORT}:19530
command: milvus run standalone
openfga:
ports:
- ${OPENFGA_PORT}:8081
minio:
ports:
- ${MINIO_EXTERNAL_PORT}:${MINIO_PORT}
- ${MINIO_CONSOLE_EXTERNAL_PORT}:${MINIO_CONSOLE_PORT}