-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
230 lines (218 loc) · 5.86 KB
/
docker-compose.yaml
File metadata and controls
230 lines (218 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
services:
postgres:
image: postgres:14
environment:
- POSTGRES_DB=registry
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=password
volumes:
- postgres-data:/var/lib/postgresql/data
ports:
- "5432:5432" # Standard port: 5432
healthcheck:
test: ["CMD", "pg_isready", "-U", "admin", "-d", "registry"]
interval: 5s
timeout: 5s
retries: 5
networks:
- app-network
consul:
image: hashicorp/consul:1.15
ports:
- "8500:8500" # Standard port: 8500
command: "agent -server -bootstrap -ui -client=0.0.0.0"
networks:
- app-network
kong-db:
image: postgres:13
environment:
- POSTGRES_DB=kong
- POSTGRES_USER=kong
- POSTGRES_PASSWORD=kongpass
volumes:
- kong-db-data:/var/lib/postgresql/data
ports:
- "5433:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "kong", "-d", "kong"]
interval: 5s
timeout: 5s
retries: 5
networks:
- app-network
kong:
build:
context: ./services/kong-synch
dockerfile: Dockerfile.kong
environment:
- KONG_DATABASE=postgres
- KONG_PG_HOST=kong-db
- KONG_PG_USER=kong
- KONG_PG_PASSWORD=kongpass
- KONG_PG_PORT=5432
- KONG_PROXY_ACCESS_LOG=/dev/stdout
- KONG_ADMIN_ACCESS_LOG=/dev/stdout
- KONG_PROXY_ERROR_LOG=/dev/stderr
- KONG_ADMIN_ERROR_LOG=/dev/stderr
- KONG_ADMIN_LISTEN=0.0.0.0:8001
- KONG_PROXY_LISTEN=0.0.0.0:8000
- KONG_SERVICE_DISCOVERY=consul
- KONG_CONSUL_HOST=consul
- KONG_CONSUL_PORT=8500
- KONG_NGINX_DAEMON=off
ports:
- "8000:8000"
- "8001:8001"
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost:8001/status"]
# interval: 5s
# timeout: 5s
# retries: 10
depends_on:
kong-db:
condition: service_healthy
consul:
condition: service_started
networks:
- app-network
kong-synch: # Match logs naming
build:
context: ./services/kong-synch
dockerfile: Dockerfile
command: "node synch.js"
depends_on:
kong:
condition: service_healthy
consul:
condition: service_started
networks:
- app-network
registration-service:
build:
context: ./services/registration
dockerfile: Dockerfile
environment:
- NODE_ENV=production
- PORT=0
- POSTGRES_HOST=postgres
- CONSUL_HOST=consul
- HOSTNAME=registration-service
- KEYCLOAK_JWKS_URI=http://host.docker.internal:8080/realms/digit30/protocol/openid-connect/certs
- KEYCLOAK_ISSUER=http://localhost:8080/realms/digit30
- KEYCLOAK_AUDIENCE=account
depends_on:
- postgres
- consul
networks:
- app-network
account-service:
build:
context: ./services/account
dockerfile: Dockerfile
environment:
- NODE_ENV=production
- PORT=0
- POSTGRES_HOST=postgres
- POSTGRES_DB=registry
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=password
- KEYCLOAK_ADMIN_URL=http://host.docker.internal:8080
- KEYCLOAK_ADMIN_USERNAME=admin
- KEYCLOAK_ADMIN_PASSWORD=admin
- CONSUL_HOST=consul
- HOSTNAME=account-service
depends_on:
postgres:
condition: service_healthy
consul:
condition: service_started
networks:
- app-network
database-service:
build:
context: ./services/registry/database
dockerfile: Dockerfile
environment:
- NODE_ENV=production
- PORT=0
- POSTGRES_HOST=postgres
- POSTGRES_DB=registry
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=password
- KEYCLOAK_JWKS_URI=http://host.docker.internal:8080/realms/digit30/protocol/openid-connect/certs
- KEYCLOAK_ISSUER=http://localhost:8080/realms/digit30
- KEYCLOAK_AUDIENCE=account
- CONSUL_HOST=consul
- HOSTNAME=database-service
depends_on:
postgres:
condition: service_healthy
consul:
condition: service_started
networks:
- app-network
registry-service:
build:
context: ./services/registry
dockerfile: Dockerfile
environment:
- NODE_ENV=production
- PORT=0
- POSTGRES_HOST=postgres
- POSTGRES_DB=registry
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=password
- KEYCLOAK_JWKS_URI=http://host.docker.internal:8080/realms/digit30/protocol/openid-connect/certs
- KEYCLOAK_ISSUER=http://localhost:8080/realms/digit30
- KEYCLOAK_AUDIENCE=account
- CONSUL_HOST=consul
- HOSTNAME=registry-service
depends_on:
postgres:
condition: service_healthy
database-service:
condition: service_started
consul:
condition: service_started
networks:
- app-network
enrollment-service:
build:
context: ./services/identity/enrollment
dockerfile: Dockerfile
environment:
- NODE_ENV=production
- PORT=0
- KEYCLOAK_JWKS_URI=http://host.docker.internal:8080/realms/digit30/protocol/openid-connect/certs
- KEYCLOAK_ISSUER=http://localhost:8080/realms/digit30
- KEYCLOAK_AUDIENCE=account
- CONSUL_HOST=consul
- HOSTNAME=enrollment-service
depends_on:
- consul
networks:
- app-network
identity-service:
build:
context: ./services/identity
dockerfile: Dockerfile
environment:
- NODE_ENV=production
- PORT=0
- KEYCLOAK_JWKS_URI=http://host.docker.internal:8080/realms/digit30/protocol/openid-connect/certs
- KEYCLOAK_ISSUER=http://localhost:8080/realms/digit30
- KEYCLOAK_AUDIENCE=account
- CONSUL_HOST=consul
- HOSTNAME=identity-service
depends_on:
- consul
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
postgres-data:
driver: local
kong-db-data:
driver: local