forked from credebl/platform
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
181 lines (179 loc) · 4.38 KB
/
docker-compose.yml
File metadata and controls
181 lines (179 loc) · 4.38 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
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
seed:
container_name: seed-service
image: ghcr.io/credebl/seed:latest
env_file:
- ./.env
volumes:
- $PWD/libs/prisma-service/prisma/data/credebl-master-table.json:/app/libs/prisma-service/prisma/data/credebl-master-table.json
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
user:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
image: ghcr.io/credebl/user:latest
env_file:
- ./.env
utility:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
image: ghcr.io/credebl/utility:latest
env_file:
- ./.env
connection:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- utility
- user
image: ghcr.io/credebl/connection:latest
env_file:
- ./.env
issuance:
depends_on:
- nats # Use depends_on instead of needs
- redis
- api-gateway
- user
- connection
image: ghcr.io/credebl/issuance:latest
env_file:
- ./.env
ledger:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
image: ghcr.io/credebl/ledger:latest
env_file:
- ./.env
organization:
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:
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:
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
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'
image: ghcr.io/credebl/agent-service:latest
env_file:
- ./.env
volumes:
- /var/run/docker.sock:/var/run/docker.sock
volumes_from:
- agent-provisioning
cloud-wallet:
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/cloud-wallet:latest
env_file:
- ./.env
geolocation:
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/geolocation:latest
env_file:
- ./.env
notification:
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/notification:latest
env_file:
- ./.env
webhook:
depends_on:
- nats
- api-gateway
image: ghcr.io/credebl/webhook:latest
env_file:
- ./.env
schema-file-server:
container_name: schema-file-server
image: ghcr.io/credebl/schema-file-server:latest
env_file:
- ./.env
volumes:
cache:
driver: local