forked from ptanlam/eshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (44 loc) · 1.12 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
version: '3.9'
services:
kong-gateway:
build: ./kong
mssql:
build: ./mssql
mongo:
image: mongo:5.0.5
postgres:
build: ./postgres
redis:
image: redis:6.2.6-alpine
rabbitmq:
image: rabbitmq:3.9.11-management-alpine
mailhog:
image: mailhog/mailhog:v1.0.1
catalog-service:
build: ./services/catalog-service
basket-service:
build: ./services/basket-service
review-service:
build: ./services/review-service
storage-service:
build: ./services/storage-service
vendor-service:
build: ./services/vendor-service
payment-service:
build: ./services/payment-service
currency-service:
build: ./services/currency-service
discount-service:
build: ./services/discount-service
coupon-service:
build: ./services/coupon-service
ordering-service:
build: ./services/ordering-service
notification-service:
build: ./services/notification-service
customer-web-client:
build: ./clients/customer-web-client
vendor-web-client:
build: ./clients/vendor-web-client
administration-web-client:
build: ./clients/administration-web-client