-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
70 lines (61 loc) · 1.37 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
version: '3.4'
services:
eureka-server:
image: steeltoeoss/eurekaserver:latest
restart: on-failure
hostname: eureka-server
networks:
- microservice-network
ports:
- "8761:8761"
api-gateway:
image: vedantmaurya/apigateway:latest
restart: on-failure
ports:
- "80:80"
build:
context: .
dockerfile: API-Gateway/Dockerfile
networks:
- microservice-network
orderapi:
image: vedantmaurya/orderapi:latest
restart: on-failure
ports:
- "5196:5196"
build:
context: .
dockerfile: OrderAPI/Dockerfile
networks:
- microservice-network
productapi:
image: vedantmaurya/productapi:latest
restart: on-failure
ports:
- "5039:5039"
build:
context: .
dockerfile: ProductAPI/Dockerfile
networks:
- microservice-network
cartapi:
image: vedantmaurya/cartapi:latest
restart: on-failure
ports:
- "5235:5235" # Expose port 5235 of CartApi service to port 5235 on the host
#- "443[on local system]:443[on docker img]"
build:
context: .
dockerfile: CartAPI/Dockerfile
networks:
- microservice-network
rabbitmq:
image: rabbitmq:3-management
restart: on-failure
ports:
- "5672:5672"
- "15672:15672"
networks:
- microservice-network
networks:
microservice-network: