File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : ' 2'
2+
3+ services :
4+ basket.api :
5+ image : eshop/basket.api
6+ depends_on :
7+ - basket.data
8+ - identity.api
9+ - rabbitmq
10+
11+ catalog.api :
12+ image : eshop/catalog.api
13+ depends_on :
14+ - sql.data
15+ - rabbitmq
16+
17+ identity.api :
18+ image : eshop/identity.api
19+ depends_on :
20+ - sql.data
21+
22+ ordering.api :
23+ image : eshop/ordering.api
24+ depends_on :
25+ - sql.data
26+
27+ webspa :
28+ image : eshop/webspa
29+ depends_on :
30+ - identity.api
31+ - basket.api
32+
33+ webmvc :
34+ image : eshop/webmvc
35+ depends_on :
36+ - catalog.api
37+ - ordering.api
38+ - identity.api
39+ - basket.api
40+
41+ sql.data :
42+ image : microsoft/mssql-server-linux
43+
44+ basket.data :
45+ image : redis
46+ ports :
47+ - " 6379:6379"
48+
49+ rabbitmq :
50+ image : rabbitmq
51+ ports :
52+ - " 5672:5672"
53+
54+ webstatus :
55+ image : eshop/webstatus
56+
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ services:
55 image : eshop/basket.api
66 build :
77 context : ./src/Services/Basket/Basket.API
8- dockerfile : Dockerfile
8+ dockerfile : Dockerfile
99 depends_on :
1010 - basket.data
1111 - identity.api
@@ -15,7 +15,7 @@ services:
1515 image : eshop/catalog.api
1616 build :
1717 context : ./src/Services/Catalog/Catalog.API
18- dockerfile : Dockerfile
18+ dockerfile : Dockerfile
1919 depends_on :
2020 - sql.data
2121 - rabbitmq
@@ -24,23 +24,23 @@ services:
2424 image : eshop/identity.api
2525 build :
2626 context : ./src/Services/Identity/Identity.API
27- dockerfile : Dockerfile
27+ dockerfile : Dockerfile
2828 depends_on :
2929 - sql.data
3030
3131 ordering.api :
3232 image : eshop/ordering.api
3333 build :
3434 context : ./src/Services/Ordering/Ordering.API
35- dockerfile : Dockerfile
35+ dockerfile : Dockerfile
3636 depends_on :
3737 - sql.data
3838
3939 webspa :
4040 image : eshop/webspa
4141 build :
4242 context : ./src/Web/WebSPA
43- dockerfile : Dockerfile
43+ dockerfile : Dockerfile
4444 depends_on :
4545 - identity.api
4646 - basket.api
@@ -49,7 +49,7 @@ services:
4949 image : eshop/webmvc
5050 build :
5151 context : ./src/Web/WebMVC
52- dockerfile : Dockerfile
52+ dockerfile : Dockerfile
5353 depends_on :
5454 - catalog.api
5555 - ordering.api
@@ -73,4 +73,5 @@ services:
7373 image : eshop/webstatus
7474 build :
7575 context : ./src/Web/WebStatus
76- dockerfile : Dockerfile
76+ dockerfile : Dockerfile
77+
You can’t perform that action at this time.
0 commit comments