-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
170 lines (158 loc) · 3.45 KB
/
docker-compose.yml
File metadata and controls
170 lines (158 loc) · 3.45 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
165
166
167
168
169
170
version: '3.4'
networks:
frontend:
backend:
services:
catalog:
image: jewels/catalogapi
build:
context: .\ProductCatalogAPI
dockerfile: Dockerfile
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
environment:
ASPNETCORE_ENVIRONMENT: Development
DatabaseServer: mssqlserver
DatabaseName: CatalogDb
DatabaseUser: sa
DatabasePassword: ProductApi(!)
ExternalCatalogBaseUrl: http://localhost:6080
ports:
- "6080:80"
container_name: jewelscatalogapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
tokenserver:
build:
context: .\TokenServiceApi
dockerfile: Dockerfile
image: jewels/tokenapi
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
environment:
ASPNETCORE_ENVIRONMENT: Development
MvcClient: http://localhost:5208
ports:
- "6070:80"
container_name: tokenserviceapi
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:6070
ConnectionString: basket.data
ports:
- "6065: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:6070
SQLSERVER_HOST: mssqlserver
SA_PASSWORD: ProductApi(!)
DATABASE: OrdersDb
ports:
- "6075:80"
container_name: orderapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
- tokenserver
- rabbitmq
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
ASPNETCORE_ENVIRONMENT: Development
IdentityUrl: http://10.10.10.30:6070
CallBackUrl: http://localhost:5208
CartUrl: http://cart
OrderUrl: http://order
StripePublicKey: pk_test_jZlpubvlPmcV6QJPReImelQy
StripePrivateKey: sk_test_bSHT9qxwjpyCOP0qdAvHLfAA
ports:
- "5208: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: jewelssqlserver
ports:
- "1448:1433"
networks:
- backend
basket.data:
image: redis
ports:
- "6079:6379"
networks:
- backend
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
hostname: myrabbitmq
ports:
- "15673:15672"
- "5673:5672"
- "5674:5671"
volumes:
- ~/rabbitmq:/var/lib/rabbitmq/mnesia
networks:
- backend