-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
114 lines (95 loc) · 2.72 KB
/
docker-compose.yml
File metadata and controls
114 lines (95 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
version: '3.4'
services:
reti.lab.foodonkontainers.users.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersusersapi
ports:
- "5001:80"
deploy:
replicas: 1
endpoint_mode: dnsrr
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Users.Api/Dockerfile
reti.lab.foodonkontainers.restaurants.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersrestaurantsapi
ports:
- "5002:80"
deploy:
replicas: 1
endpoint_mode: dnsrr
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Restaurants.Api/Dockerfile
reti.lab.foodonkontainers.basket.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersbasketapi
ports:
- "5003:80"
deploy:
replicas: 1
endpoint_mode: dnsrr
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Basket.Api/Dockerfile
reti.lab.foodonkontainers.deliveries.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersdeliveriesapi
ports:
- "5004:80"
deploy:
replicas: 1
endpoint_mode: dnsrr
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Deliveries.Api/Dockerfile
reti.lab.foodonkontainers.orders.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersordersapi
ports:
- "5005:80"
deploy:
replicas: 1
endpoint_mode: dnsrr
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Orders.Api/Dockerfile
reti.lab.foodonkontainers.payments.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainerspaymentsapi
ports:
- "5006:80"
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Payments.Api/Dockerfile
reti.lab.foodonkontainers.reviews.api:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersreviewsapi
ports:
- "5007:80"
deploy:
replicas: 1
endpoint_mode: dnsrr
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Reviews.Api/Dockerfile
reti.lab.foodonkontainers.web.spa:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainerswebspa
ports:
- "5008:80"
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Web.SPA/Dockerfile
reti.lab.foodonkontainers.gateway.simple:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersgatewaysimple
deploy:
replicas: 1
ports:
- "5000:80"
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Gateway.Simple/Dockerfile
reti.lab.foodonkontainers.gateway.ocelot:
image: ${DOCKER_REGISTRY-}retilabfoodonkontainersgatewayocelot
deploy:
replicas: 1
endpoint_mode: dnsrr
ports:
- "4000:80"
build:
context: .
dockerfile: Reti.Lab.FoodOnKontainers.Gateway.Ocelot/Dockerfile