-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (43 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (43 loc) · 861 Bytes
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.8"
services:
zipkin:
image: openzipkin/zipkin:latest
ports:
- "9411:9411"
networks:
- my-network
discovery-service:
image: rohan1010/discovery-service
networks:
- my-network
config-server:
image: rohan1010/config-server
depends_on:
- discovery-service
networks:
- my-network
inventory-service:
image: rohan1010/inventory-service
depends_on:
- config-server
- zipkin
networks:
- my-network
order-service:
image: rohan1010/order-service
depends_on:
- config-server
- zipkin
networks:
- my-network
api-gateway-service:
image: rohan1010/api-gateway-service
depends_on:
- order-service
- inventory-service
ports:
- "8081:8081"
networks:
- my-network
networks:
my-network: