forked from KalAcademyNP/JewelsOnContainers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
125 lines (116 loc) · 2.53 KB
/
docker-compose.yml
File metadata and controls
125 lines (116 loc) · 2.53 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
115
116
117
118
119
120
121
122
123
124
125
version: '3.4'
networks:
frontend:
backend:
services:
catalog:
build:
context: .\ProductCatalogAPI
dockerfile: Dockerfile
image: jewels/catalogapi
environment:
DatabaseServer: mssqlserver
DatabaseName: CatalogDb
DatabaseUser: sa
DatabaseUserPassword: ProductApi(!)
ExternalCatalogBaseUrl: http://localhost:5060
ports:
- "5060:80"
container_name: catalogapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
cart:
build:
context: .\CartApi
dockerfile: Dockerfile
image: jewels/cartapi
environment:
IdentityUrl: http://10.10.10.30:5070
ConnectionString: basket.data
ports:
- "5065:80"
container_name: cartapi
networks:
- backend
- frontend
depends_on:
- basket.data
- tokenserver
order:
build:
context: .\OrderApi
dockerfile: Dockerfile
image: jewels/orderapi
environment:
IdentityUrl: http://10.10.10.30:5070
SQLSERVER_HOST: catalogdb
SA_PASSWORD: ProductApi(!)
DATABASE: OrdersDb
ports:
- "5075:80"
container_name: orderapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
- tokenserver
tokenserver:
build:
context: .\TokenServiceApi
dockerfile: Dockerfile
image: jewels/tokenapi
environment:
ASPNETCORE_ENVIRONMENT: Development
MvcClient: http://localhost:5202
ports:
- "5070:80"
container_name: tokenserviceapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
webmvc:
build:
context: .\webmvc
dockerfile: Dockerfile
image: jewels/webmvc
container_name: webshop
environment:
CatalogUrl: http://catalog
IdentityUrl: http://10.10.10.30:5070
CallBackUrl: http://localhost:5202
CartUrl: http://cart
OrderUrl: http://order
StripePublicKey: pk_test_jZlpubvlPmcV6QJPReImelQy
StripePrivateKey: sk_test_bSHT9qxwjpyCOP0qdAvHLfAA
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5202:80"
networks:
- frontend
depends_on:
- catalog
- tokenserver
- cart
- order
mssqlserver:
image: "microsoft/mssql-server-linux:latest"
environment:
ACCEPT_EULA: Y
SA_PASSWORD: ProductApi(!)
container_name: catalogdb
ports:
- "1448:1433"
networks:
- backend
basket.data:
image: redis
ports:
- "6378:6379"
networks:
- backend