-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdocker-compose-sqlite.yml
295 lines (277 loc) · 8.09 KB
/
docker-compose-sqlite.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
version: "3.7"
services:
#########################################################################
##### IMGPROXY #######
#########################################################################
imgproxy:
image: darthsim/imgproxy:v2.15.0
ports:
- 8080:8080
environment:
- IMGPROXY_BASE_URL=http://minio:9000/
- IMGPROXY_TTL=31536000
networks:
- kavach
nginx:
image: nginx:1.19.0-alpine
ports:
- 7001:80
volumes:
- ./nginx:/etc/nginx/conf.d
restart: unless-stopped
depends_on:
- imgproxy
networks:
- kavach
###########################################################################
####### UPLOAD SERVICES #######
###########################################################################
companion:
image: transloadit/companion
ports:
- "3020:3020"
env_file:
- ./companion/.env
###########################################################################
####### MINIO #######
###########################################################################
minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ~/factly/kavach/minio/data:/export
- ~/factly/kavach/minio/config:/root/.minio
environment:
- MINIO_ACCESS_KEY=miniokey
- MINIO_SECRET_KEY=miniosecret
networks:
- kavach
command: server /export --console-address ":9001"
createbuckets:
image: minio/mc
depends_on:
- minio
volumes:
- ./wait-for-it.sh:/usr/local/bin/wait-for-it.sh
networks:
- kavach
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/kavach;
/usr/bin/mc policy set download myminio/kavach;
exit 0;
"
###########################################################################
####### SMTP SERVICES #######
###########################################################################
mailslurper:
image: oryd/mailslurper:latest-smtps
ports:
- "4436:4436"
- "4437:4437"
networks:
- kavach
###########################################################################
####### KRATOS, KETO AND OATHKEEPER #######
###########################################################################
kratos-migrate:
# depends_on:
# - postgres
image: oryd/kratos:v0.10.1
environment:
- DSN=sqlite:///var/lib/sqlite/kratos-db.sqlite?_fk=true&mode=rwc
volumes:
- type: bind
source: ./volumes/kratos-sqlite
target: /var/lib/sqlite
read_only: false
- type: bind
source: ./kratos/config
target: /etc/config/kratos
command: -c /etc/config/kratos/kratos.yml migrate sql -e --yes
restart: on-failure
networks:
- kavach
kratos:
depends_on:
- kratos-migrate
image: oryd/kratos:v0.10.1
ports:
- "4433:4433" # public
- "4434:4434" # admin
environment:
- DSN=sqlite:///var/lib/sqlite/kratos-db.sqlite?_fk=true&mode=rwc
- LOG_LEVEL=trace
volumes:
- type: bind
source: ./volumes/kratos-sqlite
target: /var/lib/sqlite
read_only: false
- type: bind
source: ./kratos/config
target: /etc/config/kratos
command: serve -c /etc/config/kratos/kratos.yml --dev --watch-courier
restart: unless-stopped
networks:
- kavach
keto-migrate:
image: oryd/keto:v0.9.0-alpha.0
environment:
- DSN=sqlite:///var/lib/sqlite/keto-db.sqlite?_fk=true&mode=rwc
- LOG_LEVEL=debug
# depends_on:
# - postgres
volumes:
- type: bind
source: ./keto
target: /etc/config/keto
- type: bind
source: ./volumes/keto-sqlite
target: /var/lib/sqlite
read_only: false
# command: namespace migrate legacy -c "/etc/config/keto/keto.yml" --yes
command: migrate up -c "/etc/config/keto/keto.yml" --yes
restart: on-failure
networks:
- kavach
keto:
depends_on:
- keto-migrate
image: oryd/keto:v0.9.0-alpha.0
ports:
- "4466:4466" # read
- "4467:4467" # write
- "4468:4468" # metric
environment:
- DSN=sqlite:///var/lib/sqlite/keto-db.sqlite?_fk=true&mode=rwc
- LOG_LEVEL=debug
volumes:
- type: bind
source: ./keto
target: /etc/config/keto
- type: bind
source: ./volumes/keto-sqlite
target: /var/lib/sqlite
read_only: false
command: serve -c "/etc/config/keto/keto.yml"
networks:
- kavach
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:
- kavach
###########################################################################
####### KAVACH #######
###########################################################################
kavach-server:
depends_on:
# - postgres
- keto
- kratos
- kavach-migrate
ports:
- 5001:8000
build:
context: ./server
dockerfile: Dockerfile.dev
environment:
- WAIT_HOSTS= kratos:4434 , keto:4466
volumes:
- type: bind
source: ./server
target: /app
- type: bind
source: ./config.env
target: /app/config.env
- type: bind
source: ./volumes/kavach-sqlite/kavach.db
target: /app/kavach.db
restart: unless-stopped
networks:
- kavach
kavach-migrate:
depends_on:
# - postgres
- keto
- kratos
build:
context: ./server
dockerfile: Dockerfile.migrate
environment:
- WAIT_HOSTS= kratos:4434 , keto:4466
volumes:
- type: bind
source: ./server
target: /app
- type: bind
source: ./config.env
target: /app/config.env
- type: bind
source: ./volumes/kavach-sqlite/kavach.db
target: /app/kavach.db
networks:
- kavach
kavach-web:
build:
context: ./web
dockerfile: Dockerfile
environment:
- PUBLIC_URL=http://127.0.0.1:4455/.factly/kavach/web
- REACT_APP_PUBLIC_PATH_PRODUCTION=kavach.factly.org
- REACT_APP_PUBLIC_PATH_DEVELOPMENT=/.factly/kavach/web/
- REACT_APP_KAVACH_TITLE=Kavach
- REACT_APP_COMPANION_URL=http://127.0.0.1:3020
- REACT_APP_API_URL=http://127.0.0.1:4455/.factly/kavach/server
- REACT_APP_KRATOS_PUBLIC_URL=http://127.0.0.1:4455/.ory/kratos/public
- REACT_APP_ENABLE_MULTITENANCY=true
- REACT_APP_DISABLE_REGISTRATION=false
- REACT_APP_POSTHOG_API_KEY=POSTHOG_API_KEY
- REACT_APP_POSTHOG_URL=https://app.posthog.com
volumes:
- type: bind
source: ./web
target: /app
- /app/node_modules
restart: unless-stopped
networks:
- kavach
kavach-studio:
build:
context: ./studio
dockerfile: Dockerfile
environment:
- PUBLIC_URL=http://127.0.0.1:4455/.factly/kavach/studio
- REACT_APP_PUBLIC_PATH_PRODUCTION=kavach.factly.org
- REACT_APP_PUBLIC_PATH_DEVELOPMENT=/.factly/kavach/studio/
- REACT_APP_KAVACH_TITLE=Kavach
- REACT_APP_COMPANION_URL=http://127.0.0.1:3020
- REACT_APP_API_URL=http://127.0.0.1:4455/.factly/kavach/server
- REACT_APP_KRATOS_PUBLIC_URL=http://127.0.0.1:4455/.ory/kratos/public
volumes:
- type: bind
source: ./studio
target: /app
- /app/node_modules
restart: unless-stopped
networks:
- kavach
networks:
kavach: