-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
50 lines (49 loc) · 1.31 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
version: '3.2'
services:
web:
image: trajano/quasar-ms
networks:
- gateway-web
proxy:
image: trajano/proxy
networks:
- gateway-web
gateway-ms:
image: trajano/gateway-ms
networks:
- default
- gateway-web
- gateway-auth
authentication-ms:
image: trajano/authentication-ms
networks:
- gateway-auth
- default
authorization-ms:
image: trajano/authorization-ms
networks:
- gateway-auth
- authorization
oidc-ms:
image: trajano/oidc-ms
networks:
- gateway-auth
- default
sample-ms:
image: trajano/sample-ms
swagger-ms:
image: trajano/swagger-ms
security-cache:
image: hazelcast/hazelcast:latest
networks:
- authorization
cache:
image: hazelcast/hazelcast:latest
networks:
# The default network is used for all the microservices that are not associated with anything infrastructure related. Primarily where the aplpication specific microservices reside.
gateway-web:
# This network is used to facilitate the communication between the gateway and the nginx web server.
gateway-auth:
# This network is used to facilitate the communication between the gateway and the authn/authz microservices.
authorization:
# authorization-ms has it's own network to prevent other microservices from using the cache