-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
253 lines (251 loc) · 6.17 KB
/
docker-compose.yml
File metadata and controls
253 lines (251 loc) · 6.17 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
version: '3'
services:
nats:
container_name: credebl-nats
image: nats
command: ["-c", "/nats-server.conf"]
ports:
- '4222:4222'
- '6222:6222'
- '8222:8222'
volumes:
- ./nats-server.conf:/nats-server.conf:ro
redis:
container_name: credebl-redis
image: redis:6.2-alpine
restart: always
ports:
- '6379:6379'
command: redis-server --save 20 1 --loglevel warning
volumes:
- cache:/data
postgres:
container_name: credebl-postgres
image: postgres:16
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=credebl
volumes:
- platform-volume:/var/lib/postgresql/data
seed:
container_name: seed-service
image: ghcr.io/credebl/seed:latest
env_file:
- ./.env
volumes:
- $PWD/libs/prisma-service/prisma/data/credebl-master-table/credebl-master-table.json:/app/libs/prisma-service/prisma/data/credebl-master-table.json
schema-file-server:
container_name: schema-file-server
image: ghcr.io/credebl/schema-file-server:latest
ports:
- '4000:4000'
env_file:
- ./.env
volumes:
- $PWD/apps/schemas:/app/schemas
api-gateway:
container_name: api-gateway
depends_on:
- nats # Use depends_on instead of needs
- redis
image: ghcr.io/credebl/api-gateway:latest
ports:
- '5000:5000'
env_file:
- ./.env
volumes:
- $PWD/apps/uploadedFiles/exports:/app/uploadedFiles/exports
user:
container_name: user-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
image: ghcr.io/credebl/user:latest
env_file:
- ./.env
utility:
container_name: utility-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
image: ghcr.io/credebl/utility:latest
env_file:
- ./.env
connection:
container_name: connection-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- utility
- user
image: ghcr.io/credebl/connection:latest
env_file:
- ./.env
issuance:
container_name: issuance-service
depends_on:
- nats # Use depends_on instead of needs
- redis
- api-gateway
- user
- connection
image: ghcr.io/credebl/issuance:latest
env_file:
- ./.env
volumes:
- $PWD/apps/uploadedFiles/exports:/app/uploadedFiles/exports
ledger:
container_name: ledger-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
image: ghcr.io/credebl/ledger:latest
env_file:
- ./.env
organization:
container_name: organization-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
image: ghcr.io/credebl/organization:latest
env_file:
- ./.env
verification:
container_name: verification-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
- organization
image: ghcr.io/credebl/verification:latest
env_file:
- ./.env
agent-provisioning:
container_name: agent-provisioning-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
- organization
- verification
image: ghcr.io/credebl/agent-provisioning:latest
# args:
# - ROOT_PATH=$PWD/apps/agent-provisioning/AFJ/agent-config
env_file:
- ./.env
environment:
- ROOT_PATH=$PWD/apps/agent-provisioning/AFJ/agent-config
user: root
volumes:
- $PWD/apps/agent-provisioning/AFJ/agent-config:/app/agent-provisioning/AFJ/agent-config
- /var/run/docker.sock:/var/run/docker.sock
- $PWD/agent.env:/app/agent.env
agent-service:
container_name: agent-service
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
- organization
- verification
- agent-provisioning
command: sh -c 'until (docker logs agent-provisioning-service | grep "Agent-Provisioning-Service Microservice is listening to NATS"); do sleep 1; done && node dist/apps/agent-service/main.js'
image: ghcr.io/credebl/agent-service:latest
env_file:
- ./.env
user: root
volumes:
- /var/run/docker.sock:/var/run/docker.sock
volumes_from:
- agent-provisioning
cloud-wallet:
container_name: cloud-wallet-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/cloud-wallet:latest
env_file:
- ./.env
geolocation:
container_name: geolocation-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/geolocation:latest
env_file:
- ./.env
notification:
container_name: notification-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/notification:latest
env_file:
- ./.env
webhook:
container_name: webhook-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/webhook:latest
env_file:
- ./.env
ecosystem:
container_name: ecosystem-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/ecosystem:latest
env_file:
- ./.env
oid4vc-issuance:
container_name: oid4vc-issuance-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/oid4vc-issuance:latest
env_file:
- ./.env
oid4vc-verification:
container_name: oid4vc-verification-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/oid4vc-verification:latest
env_file:
- ./.env
x509:
container_name: x509-service
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/x509:latest
env_file:
- ./.env
volumes:
cache:
driver: local