This repository has been 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
95 lines (85 loc) · 2.05 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
version: "3.9"
services:
api_gateway:
profiles:
- all
- exclude-mgmt
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-controller-model
image: ${API_GATEWAY_IMAGE}:latest
environment:
API_GATEWAY_LOG_LEVEL: DEBUG
mgmt_backend_migrate:
profiles:
- all
- exclude-api-gateway
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-controller-model
image: ${MGMT_BACKEND_IMAGE}:latest
mgmt_backend_init:
profiles:
- all
- exclude-api-gateway
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-controller-model
image: ${MGMT_BACKEND_IMAGE}:latest
mgmt_backend:
profiles:
- all
- exclude-api-gateway
- exclude-console
- exclude-pipeline
- exclude-model
- exclude-controller-model
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-controller-model
image: ${MGMT_BACKEND_IMAGE}:latest
environment:
CFG_SERVER_DEBUG: "true"
CFG_SERVER_EDITION: ${EDITION}
console:
profiles:
- all
- exclude-api-gateway
- exclude-mgmt
- exclude-pipeline
- exclude-model
- exclude-controller-model
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}
pg_sql:
ports:
- ${POSTGRESQL_PORT}:5432
temporal:
ports:
- ${TEMPORAL_PORT}:7233
redis:
ports:
- ${REDIS_PORT}:6379
etcd:
ports:
- ${ETCD_CLIENT_PORT}:${ETCD_CLIENT_PORT}