-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
163 lines (147 loc) · 3.98 KB
/
docker-compose.yml
File metadata and controls
163 lines (147 loc) · 3.98 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
version: '3.4'
services:
mongo:
image: mongo:6.0.4
environment:
- MONGO_INITDB_ROOT_USERNAME=mongo
- MONGO_INITDB_ROOT_PASSWORD=mongo
ports:
- "27017:27017"
rabbitmq:
image: masstransit/rabbitmq
environment:
- RABBITMQ_DEFAULT_USER=rabbitmq
- RABBITMQ_DEFAULT_PASS=rabbitmq
ports:
- "15672:15672"
- "5672:5672"
redis:
image: redis:7.0.8-alpine
ports:
- "6379:6379"
app.services.gateway:
image: ${DOCKER_REGISTRY-}appservicesgateway
build:
context: .
dockerfile: App.Services.Gateway/App.Services.Gateway/Dockerfile
ports:
- "3000:443"
depends_on:
- app.services.authentication
- app.services.users
- app.services.departments
- app.services.organizations
- app.services.teams
- app.services.billing
- app.services.events
- app.services.orders
- app.services.tickets
- app.services.games
- app.services.tournaments
app.services.realtimeupdater:
image: ${DOCKER_REGISTRY-}appservicesrealtimeupdater
build:
context: .
dockerfile: App.Services.RealTimeUpdater/App.Services.RealTimeUpdater/Dockerfile
ports:
- "3001:443"
depends_on:
- app.services.authentication
- app.services.users
- app.services.departments
- app.services.organizations
- app.services.teams
- app.services.billing
- app.services.events
- app.services.orders
- app.services.tickets
- app.services.games
- app.services.tournaments
app.services.users:
image: ${DOCKER_REGISTRY-}appservicesusers
build:
context: .
dockerfile: App.Services.Users/App.Services.Users/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.departments:
image: ${DOCKER_REGISTRY-}appservicesdepartments
build:
context: .
dockerfile: App.Services.Departments/App.Services.Departments/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.organizations:
image: ${DOCKER_REGISTRY-}appservicesorganizations
build:
context: .
dockerfile: App.Services.Organizations/App.Services.Organizations/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.teams:
image: ${DOCKER_REGISTRY-}appservicesteams
build:
context: .
dockerfile: App.Services.Teams/App.Services.Teams/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.billing:
image: ${DOCKER_REGISTRY-}appservicesbilling
build:
context: .
dockerfile: App.Services.Billing/App.Services.Billing/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.events:
image: ${DOCKER_REGISTRY-}appservicesevents
build:
context: .
dockerfile: App.Services.Events/App.Services.Events/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.orders:
image: ${DOCKER_REGISTRY-}appservicesorders
build:
context: .
dockerfile: App.Services.Orders/App.Services.Orders/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.tickets:
image: ${DOCKER_REGISTRY-}appservicestickets
build:
context: .
dockerfile: App.Services.Tickets/App.Services.Tickets/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.games:
image: ${DOCKER_REGISTRY-}appservicesgames
build:
context: .
dockerfile: App.Services.Games/App.Services.Games/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.tournaments:
image: ${DOCKER_REGISTRY-}appservicestournaments
build:
context: .
dockerfile: App.Services.Tournaments/App.Services.Tournaments/Dockerfile
depends_on:
- mongo
- rabbitmq
app.services.authentication:
image: ${DOCKER_REGISTRY-}appservicesauthentication
build:
context: .
dockerfile: App.Services.Authentication/App.Services.Authentication/Dockerfile
depends_on:
- mongo
- rabbitmq