-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (60 loc) · 1.29 KB
/
docker-compose.yml
File metadata and controls
69 lines (60 loc) · 1.29 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
services:
consul:
image: hashicorp/consul:latest
ports:
- 8500:8500
container_name: consul
rabbitmq:
image: rabbitmq:3-management
ports:
- 5672:5672
- 15672:15672
container_name: rabbitmq
ocelot:
build:
dockerfile: ./Microservice.OcelotGateway/Dockerfile
ports:
- 5001:8080
container_name: ocelot-gateway
yarp:
build:
dockerfile: ./Microservice.YarpGateway/Dockerfile
ports:
- 5002:8080
container_name: yarp-gateway
auth:
build:
dockerfile: ./Microservice.AuthWebAPI/Dockerfile
ports:
- 5010:8080
container_name: auth-webapi
category:
build:
dockerfile: ./Microservice.CategoryWebAPI/Dockerfile
ports:
- 5003:8080
container_name: category-webapi
product1:
build:
dockerfile: ./Microservice.ProductWebAPI/Dockerfile
ports:
- 5004:8080
container_name: product-webapi1
product2:
build:
dockerfile: ./Microservice.ProductWebAPI/Dockerfile
ports:
- 6004:8080
container_name: product-webapi2
order:
build:
dockerfile: ./Microservice.OrderWebAPI/Dockerfile
ports:
- 5005:8080
container_name: order-webapi
payment:
build:
dockerfile: ./Microservice.PaymentWebAPI/Dockerfile
ports:
- 5006:8080
container_name: payment-webapi