-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
325 lines (304 loc) · 9.12 KB
/
docker-compose.yml
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
version: "3.7"
services:
###########################################################################
####### DB SERVICES #######
###########################################################################
postgres:
image: postgres:11.7-alpine
ports:
- "5432:5432"
volumes:
- ./pg-init-scripts:/docker-entrypoint-initdb.d
- ~/factly/bindu/postgresql:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_MULTIPLE_DATABASES=kratos,keto,kavach,bindu
networks:
- bindu
###########################################################################
####### IMGPROXY #######
###########################################################################
imgproxy:
image: darthsim/imgproxy:v2.15.0
ports:
- 8080:8080
environment:
- IMGPROXY_BASE_URL=http://minio:9000/
- IMGPROXY_TTL=31536000
networks:
- bindu
nginx:
image: nginx:1.19.0-alpine
ports:
- 7001:80
volumes:
- ./nginx:/etc/nginx/conf.d
restart: unless-stopped
depends_on:
- imgproxy
networks:
- bindu
###########################################################################
####### UPLOAD SERVICES #######
###########################################################################
companion:
image: transloadit/companion
ports:
- "3020:3020"
env_file:
- ./companion/.env
###########################################################################
####### MINIO #######
###########################################################################
minio:
image: minio/minio
ports:
- "9000:9000"
volumes:
- ~/factly/bindu/minio/data:/export
- ~/factly/bindu/minio/config:/root/.minio
environment:
- MINIO_ACCESS_KEY=miniokey
- MINIO_SECRET_KEY=miniosecret
networks:
- bindu
command: server /export
createbuckets:
image: minio/mc
depends_on:
- minio
volumes:
- ./wait-for-it.sh:/usr/local/bin/wait-for-it.sh
networks:
- bindu
entrypoint: >
/bin/sh -c "
apk add --no-cache bash;
wait-for-it.sh minio:9000 -- echo 'Minio is up. Creating the bucket!!';
/usr/bin/mc config host add myminio http://minio:9000 miniokey miniosecret;
/usr/bin/mc mb myminio/dega;
/usr/bin/mc policy set download myminio/dega;
exit 0;
"
###########################################################################
####### SMTP SERVICES #######
###########################################################################
mailslurper:
image: oryd/mailslurper:latest-smtps
ports:
- "4436:4436"
- "4437:4437"
networks:
- bindu
###########################################################################
####### SEARCH SERVICES #######
###########################################################################
meilisearch:
image: getmeili/meilisearch:v0.16.0
ports:
- "7700:7700"
volumes:
- ~/factly/bindu/meilisearch-0-14-0/data.ms/:/data.ms
environment:
# To put an upper limit of 100MB for the payload size during indexing
- MEILI_HTTP_PAYLOAD_SIZE_LIMIT=104857600
- MEILI_MASTER_KEY=password
networks:
- bindu
###########################################################################
####### KRATOS, KETO AND OATHKEEPER #######
###########################################################################
kratos-migrate:
depends_on:
- postgres
image: oryd/kratos:v0.5.0-alpha.1-sqlite
environment:
- DSN=postgres://postgres:postgres@postgres:5432/kratos?sslmode=disable
volumes:
- type: bind
source: ./kratos/config
target: /etc/config/kratos
command: -c /etc/config/kratos/kratos.yml migrate sql -e --yes
restart: on-failure
networks:
- bindu
kratos:
depends_on:
- kratos-migrate
image: oryd/kratos:v0.5.0-alpha.1-sqlite
ports:
- "4433:4433" # public
- "4434:4434" # admin
environment:
- DSN=postgres://postgres:postgres@postgres:5432/kratos?sslmode=disable
volumes:
- type: bind
source: ./kratos/config
target: /etc/config/kratos
command: serve -c /etc/config/kratos/kratos.yml --dev
restart: unless-stopped
networks:
- bindu
keto-migrate:
image: oryd/keto:v0.5.7
environment:
- LOG_LEVEL=debug
depends_on:
- postgres
command: migrate sql postgres://postgres:postgres@postgres:5432/keto?sslmode=disable
restart: on-failure
networks:
- bindu
keto:
image: oryd/keto:v0.5.7
ports:
- "4466:4466"
depends_on:
- keto-migrate
environment:
- DSN=postgres://postgres:postgres@postgres:5432/keto?sslmode=disable
networks:
- bindu
oathkeeper:
image: oryd/oathkeeper:latest-alpine
depends_on:
- kratos
ports:
- "4455:4455"
- "4456:4456"
environment:
- LOG_LEVEL=debug
volumes:
- type: bind
source: ./oathkeeper
target: /etc/config/oathkeeper
command: serve proxy -c "/etc/config/oathkeeper/.oathkeeper.yml"
restart: on-failure
networks:
- bindu
###########################################################################
####### KAVACH #######
###########################################################################
kavach-server:
depends_on:
- postgres
- keto
- kratos
- kavach-migrate
ports:
- 5000:8000
image: factly/kavach-server
environment:
- WAIT_HOSTS=postgres:5432, kratos:4434 , keto:4466
- KAVACH_DATABASE_HOST=postgres
- KAVACH_DATABASE_USER=postgres
- KAVACH_DATABASE_PASSWORD=postgres
- KAVACH_DATABASE_NAME=kavach
- KAVACH_DATABASE_PORT=5432
- KAVACH_DATABASE_SSL_MODE=disable
- KAVACH_KETO_URL=http://keto:4466
- KAVACH_KRATOS_ADMIN_URL=http://kratos:4434
- KAVACH_MODE=development
- KAVACH_IMAGEPROXY_URL=http://127.0.0.1:7001
restart: unless-stopped
networks:
- bindu
kavach-migrate:
depends_on:
- postgres
- keto
- kratos
image: factly/kavach-server
environment:
- WAIT_HOSTS=postgres:5432, kratos:4434 , keto:4466
- KAVACH_DATABASE_HOST=postgres
- KAVACH_DATABASE_USER=postgres
- KAVACH_DATABASE_PASSWORD=postgres
- KAVACH_DATABASE_NAME=kavach
- KAVACH_DATABASE_PORT=5432
- KAVACH_DATABASE_SSL_MODE=disable
- KAVACH_KETO_URL=http://keto:4466
- KAVACH_KRATOS_ADMIN_URL=http://kratos:4434
- KAVACH_MODE=development
- KAVACH_IMAGEPROXY_URL=http://127.0.0.1:7001
entrypoint: /app/kavach-server migrate
networks:
- bindu
kavach-web:
image: factly/kavach-web:dev
environment:
- PUBLIC_URL=http://127.0.0.1:4455/.factly/kavach/web
- REACT_APP_DEGA_PUBLIC_URL=http://127.0.0.1:4455/.factly/dega/studio
- REACT_APP_BINDU_PUBLIC_URL=http://127.0.0.1:4455/.factly/bindu/studio
restart: unless-stopped
networks:
- bindu
##########################################################################
###### BINDU UI, SERVER AND DB #######
##########################################################################
bindu-server:
depends_on:
- postgres
- bindu-migrate
ports:
- 7000:8000
- 7002:8001
- 7003:8002
build:
context: ./server
dockerfile: Dockerfile.dev
environment:
- WAIT_HOSTS=postgres:5432
volumes:
- type: bind
source: ./server
target: /app
- type: bind
source: ./config.env
target: /app/config.env
- type: bind
source: ./bindu.db
target: /app/bindu.db
restart: unless-stopped
networks:
- bindu
bindu-migrate:
depends_on:
- postgres
build:
context: ./server
dockerfile: Dockerfile.migrate
environment:
- WAIT_HOSTS=postgres:5432, kratos:4434 , keto:4466, kavach-server:8000
volumes:
- type: bind
source: ./server
target: /app
- type: bind
source: ./config.env
target: /app/config.env
- type: bind
source: ./bindu.db
target: /app/bindu.db
networks:
- bindu
bindu-studio:
build:
context: ./studio
dockerfile: Dockerfile
environment:
- PUBLIC_URL=http://127.0.0.1:4455/.factly/bindu/studio
- REACT_APP_KRATOS_PUBLIC_URL=http://127.0.0.1:4455/.ory/kratos/public
- REACT_APP_API_URL=http://127.0.0.1:4455/.factly/bindu/server
volumes:
- type: bind
source: ./studio
target: /app
- /app/node_modules
restart: unless-stopped
stdin_open: true
networks:
- bindu
networks:
bindu: