forked from credebl/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
142 lines (134 loc) · 3.2 KB
/
docker-compose.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
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
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
connection:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- 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
- 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.agnet-provisioning
env_file:
- ./.env
agent-service:
depends_on:
- nats # Use depends_on instead of needs
- api-gateway
- user
- connection
- issuance
- ledger
- organization
- verification
- agent-provisioning
build:
context: ./ # Adjust the context path as needed
dockerfile: Dockerfiles/Dockerfile.agent-service
env_file:
- ./.env
volumes:
cache:
driver: local