This repository was archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.latest.yml
87 lines (80 loc) · 2.31 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
version: "3.9"
services:
model_backend_migrate:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-controller-model
image: ${MODEL_BACKEND_IMAGE}:latest
model_backend_init:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-controller-model
image: ${MODEL_BACKEND_IMAGE}:latest
model_backend_worker:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-controller-model
image: ${MODEL_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
model_backend:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-controller-model
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-controller-model
image: ${MODEL_BACKEND_IMAGE}:latest
environment:
CFG_INITMODEL_ENABLED: ${INITMODEL_ENABLED}
CFG_INITMODEL_PATH: https://raw.githubusercontent.com/instill-ai/model/main/model-hub/model_hub_cpu.json
controller_model:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-model
image: ${CONTROLLER_MODEL_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
ports:
- ${CONTROLLER_MODEL_PRIVATEPORT}:${CONTROLLER_MODEL_PRIVATEPORT}
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}