-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
164 lines (153 loc) · 3.34 KB
/
docker-compose.yml
File metadata and controls
164 lines (153 loc) · 3.34 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
version: '3.4'
networks:
frontend:
backend:
services:
catalog:
build:
context: .\ProductCatalogAPI
dockerfile: Dockerfile
image: jewels/catalogapi
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
environment:
ASPNETCORE_ENVIRONMENT: Development
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
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
environment:
ASPNETCORE_ENVIRONMENT: Development
IdentityUrl: http://10.10.10.30:5070
ConnectionString: basket.data
ports:
- "5065:80"
container_name: cartapi
networks:
- backend
- frontend
depends_on:
- basket.data
- tokenserver
- rabbitmq
order:
build:
context: .\OrderApi
dockerfile: Dockerfile
image: jewels/orderapi
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
environment:
ASPNETCORE_ENVIRONMENT: Development
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
- rabbitmq
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
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
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
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
hostname: myrabbitmq
ports:
- "15672:15672"
- "5672:5672"
- "5671:5671"
volumes:
- ~/rabbitmq:/var/lib/rabbitmq/mnesia
networks:
- backend