-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (45 loc) · 993 Bytes
/
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
version: '3'
services:
eureka-server:
build: /components/eureka-server
ports:
- 8761:8761
configuration-server:
build: /components/configuration-server
ports:
- 8888:8888
gateway-service:
build: /components/gateway-service
ports:
- 9090:9090
depends_on:
- eureka-server
- configuration-server
users-service:
build: /microservices/users-ms
ports:
- 8081:8081
depends_on:
- eureka-server
- configuration-server
notifications-service:
build: /microservices/notifications-ms
ports:
- 8082:8082
depends_on:
- eureka-server
- configuration-server
keycloak-manager-service:
build: /microservices/keycloak-manager-ms
ports:
- 8083:8083
depends_on:
- eureka-server
- configuration-server
accounts-service:
build: /microservices/accounts-ms
ports:
- 8084:8084
depends_on:
- eureka-server
- configuration-server