-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
235 lines (233 loc) · 5.86 KB
/
docker-compose-dev.yml
File metadata and controls
235 lines (233 loc) · 5.86 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
version: '3'
services:
nats:
container_name: nats
entrypoint: '/nats-server -c /nats-server.conf -DV' # Corrected the path to nats-server.conf
image: nats
ports:
- '4222:4222'
- '6222:6222'
- '8222:8222'
# volumes:
# - ./nats-server.conf:/nats-server.conf # Mount the config file
redis:
image: redis:6.2-alpine
restart: always
ports:
- '6379:6379'
command: redis-server --save 20 1 --loglevel warning
volumes:
- cache:/data
api-gateway:
depends_on:
- nats # Use depends_on instead of needs
- redis
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.api-gateway
ports:
- '5000:5000'
env_file:
- ./.env
user:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.user
env_file:
- ./.env
utility:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.utility
env_file:
- ./.env
connection:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- utility
- user
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.connection
env_file:
- ./.env
issuance:
depends_on:
- nats # Use depends_on instead of needs
- redis
- api-gateway
- user
- connection
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.issuance
env_file:
- ./.env
ledger:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.ledger
env_file:
- ./.env
organization:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.organization
env_file:
- ./.env
verification:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
- organization
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.verification
env_file:
- ./.env
agent-provisioning:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
- organization
- verification
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.agent-provisioning
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
- /app/agent-provisioning/AFJ/token:/app/agent-provisioning/AFJ/token
- $PWD/agent.env:/app/agent.env
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 platform-agent-provisioning-1 | grep "Agent-Provisioning-Service Microservice is listening to NATS"); do sleep 1; done && node dist/apps/agent-service/main.js'
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.agent-service
env_file:
- ./.env
user: root
volumes:
- /var/run/docker.sock:/var/run/docker.sock
volumes_from:
- agent-provisioning
cloud-wallet:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.cloud-wallet
env_file:
- ./.env
geolocation:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.geolocation
env_file:
- ./.env
notification:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.notification
env_file:
- ./.env
webhook:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.webhook
env_file:
- ./.env
ecosystem:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.ecosystem
env_file:
- ./.env
oid4vc-issuance:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.oid4vc-issuance
env_file:
- ./.env
oid4vc-verification:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.oid4vc-verification
env_file:
- ./.env
x509:
depends_on:
- nats
- api-gateway
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.x509
env_file:
- ./.env
volumes:
cache:
driver: local