-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
157 lines (149 loc) · 3.77 KB
/
docker-compose.yml
File metadata and controls
157 lines (149 loc) · 3.77 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
networks:
frontend:
backend:
services:
catalog:
image: jewels/catalogapi
build:
context: ./ProductCatalogAPI
dockerfile: Dockerfile
environment:
ConnectionString: "Data Source=mssqlserver;Initial Catalog=CatalogDb;User Id=sa;Password=ProductApi123(!);Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;"
ExternalBaseUrl: "http://localhost:7000"
ASPNETCORE_HTTP_PORTS: 80
ports:
- "7000:80"
- "7001:443"
container_name: jewelscatalogapi
networks:
- frontend
- backend
depends_on:
- mssqlserver
tokenserver:
image: jewels/authapi
build:
context: ./AuthAPI
dockerfile: Dockerfile
environment:
ConnectionString: "Data Source=mssqlserver;Initial Catalog=TokenServiceDb;User Id=sa;Password=ProductApi123(!);Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;"
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: 80
JWT__Secret: "your_net_net_net_new_base64_encoded_key"
JWT__Issuer: "auth-api"
JWT__Audience: "auth-client"
ports:
- "7010:80"
container_name: jewelsauthapi
networks:
- frontend
- backend
depends_on:
- mssqlserver
cart:
image: jewels/cartapi
build:
context: ./CartAPI
dockerfile: Dockerfile
environment:
ConnectionString: basket.data
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: 80
JWT__Secret: "your_net_net_net_new_base64_encoded_key"
JWT__Issuer: "auth-api"
JWT__Audience: "auth-client"
ports:
- "7020:80"
container_name: jewelscartapi
networks:
- frontend
- backend
depends_on:
- tokenserver
- basket.data
- rabbitmq
order:
image: jewels/orderapi
build:
context: ./OrderAPI
dockerfile: Dockerfile
logging:
driver: "json-file"
options: {
max-size: "200k",
max-file: "10"
}
environment:
ConnectionString: "Data Source=mssqlserver;Initial Catalog=OrderDb;User Id=sa;Password=ProductApi123(!);Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;"
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: 80
JWT__Secret: "your_net_net_net_new_base64_encoded_key"
JWT__Issuer: "auth-api"
JWT__Audience: "auth-client"
ports:
- "7030:80"
container_name: jewelsorderapi
networks:
- frontend
- backend
depends_on:
- tokenserver
- mssqlserver
- rabbitmq
webmvc:
image: jewels/webmvc
build:
context: ./WebMVC
dockerfile: Dockerfile
logging:
driver: "json-file"
options: {
max-size: "200k",
max-file: "10"
}
environment:
CatalogUrl: http://catalog
IdentityUrl: http://tokenserver
CartUrl: http://cart
OrderUrl: http://order
StripePublicKey: pk_test_jZlpubvlPmcV6QJPReImelQy
StripePrivateKey: sk_test_bSHT9qxwjpyCOP0qdAvHLfAA
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: 80
ports:
- "7500:80"
container_name: webshop
networks:
- frontend
depends_on:
- catalog
- tokenserver
- cart
- order
mssqlserver:
image: "mcr.microsoft.com/mssql/server"
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: ProductApi123(!)
ports:
- "1448:1433"
container_name: jewelscatalogsqlserver
networks:
- backend
basket.data:
image: redis
ports:
- "7050:6379"
container_name: basketdata
networks:
- backend
rabbitmq:
image: rabbitmq:3
container_name: rabbitmq
hostname: jewelsrabbitmq
ports:
- "15672:15672"
- "5672:5672"
- "5671:5671"
networks:
- backend