forked from satyapjavvadi/EventsOnContainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
167 lines (158 loc) · 3.46 KB
/
docker-compose.yml
File metadata and controls
167 lines (158 loc) · 3.46 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
version: '3.4'
networks:
frontend:
backend:
services:
catalog:
image: events/catalogapis
build:
context: .\EventCatalogAPI
dockerfile: Dockerfile
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
environment:
ASPNETCORE_ENVIRONMENT: Development
DatabaseServer: mssqlserver
DatabaseName: TheHapsDb
DatabaseUser: sa
DatabasePassword: EventApi1(!)
ExtrenalEventBaseUrl: http://localhost:6081
ports:
- "6081:80"
container_name: eventapis
networks:
- backend
- frontend
depends_on:
- mssqlserver
webmvc:
build:
context: .\WebMVC
dockerfile: Dockerfile
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
image: events/webmvc10
container_name: eventfinder10
environment:
CatalogUrl: http://catalog
ASPNETCORE_ENVIRONMENT: Development
IdentityUrl: http://192.168.0.38:6071
CallBackUrl: http://localhost:5209
CartUrl: http://cart
OrderUrl: http://order
StripePublicKey: pk_test_FFHyJN9riognYFkDbdHYltci
StripePrivateKey: sk_test_gqNNPG5zWMYlBZbM5tXldLya
ports:
- "5209:80"
networks:
- frontend
depends_on:
- catalog
- tokenserver
- cart
- order
tokenserver:
build:
context: .\TokenServiceApi
dockerfile: Dockerfile
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
image: events/tokenapis
environment:
ASPNETCORE_ENVIRONMENT: Development
MvcClient: http://localhost:5209
ports:
- "6071:80"
container_name: tokenserviceapis
networks:
- backend
- frontend
depends_on:
- mssqlserver
cart:
build:
context: .\CartApi
dockerfile: Dockerfile
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
image: events/cartapis
environment:
ASPNETCORE_ENVIRONMENT: Development
IdentityUrl: http://192.168.0.38:6071
ConnectionString: basket.data
ports:
- "6065:80"
container_name: cartapis
networks:
- backend
- frontend
depends_on:
- basket.data
- tokenserver
- rabbitmq
order:
build:
context: .\OrderApi
dockerfile: Dockerfile
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
image: events/orderapis
environment:
ASPNETCORE_ENVIRONMENT: Development
IdentityUrl: http://192.168.3.153:6071
SQLSERVER_HOST: mssqlserver
SA_PASSWORD: EventApi1(!)
DATABASE: OrdersDb
ports:
- "6175:80"
container_name: orderapis
networks:
- backend
- frontend
depends_on:
- mssqlserver
- tokenserver
- rabbitmq
mssqlserver:
image: "microsoft/mssql-server-linux:latest"
environment:
ACCEPT_EULA: Y
SA_PASSWORD: EventApi1(!)
container_name: thehapssqlserver
ports:
- "1446:1433"
networks:
- backend
basket.data:
image: redis
ports:
- "6079:6379"
networks:
- backend
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmqs
hostname: myrabbitmq
ports:
- "15673:15672"
- "5673:5672"
- "5674:5671"
volumes:
- ~/rabbitmq:/var/lib/rabbitmq/mnesia
networks:
- backend