forked from lampewebdev/kadira-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·44 lines (44 loc) · 1.71 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
version: '2'
services:
kadira-engine:
build: ./kadira-engine
ports:
- "10001:80"
environment:
- PORT=80
- MONGO_URL=mongodb://10.128.0.2/apm
kadira-rma:
build: ./kadira-rma
environment:
- MONGO_SHARD=one
- MONGO_URL=mongodb://10.128.0.2/apm
kadira-api:
build: ./kadira-api
ports:
- "10002:80"
environment:
- PORT=80
- MONGO_APP_URL=mongodb://10.128.0.2/apm
- MONGO_SHARD_URL_one=mongodb://10.128.0.2/apm
- MAIL_URL=smtp://user:pass@smtp.mailgun.org:587
- AUTH_SECRET=secret
- JWT_SECRET=secret
- JWT_LIFETIME=1d
- TRELLO_KEY=xxxxxxxxx
- TRELLO_RATE=xxxxxxxxx
- TRELLO_TOKEN=xxxxxxxxx
- TRELLO_ORG_ID=xxxxxxxxx
- TRELLO_MAIN_BOARD_ID=xxxxxxxxx
kadira-ui:
build: ./kadira-ui
ports:
- "10003:80"
environment:
- PORT=80
- ROOT_URL=http://104.197.166.137:10003
- MONGO_URL=mongodb://10.128.0.2/apm
- MONGO_SHARD_URL_one=mongodb://10.128.0.2/apm
- MAIL_URL=smtp://user:pass@smtp.mailgun.org:587
- AWS_ACCESS_KEY_ID=xxxxxxxxxxxxx
- AWS_SECRET_ACCESS_KEY=xxxxxxxxxxxxx
- METEOR_SETTINGS={"public":{"tender":{"key":"405871e6-4816-4d44-a0f3-860c0e988078"},"intercom":{},"loginState":{"domain":"","cookieName":"kadira-dev-login-state"}},"tender":{"secret":"71825e70-d11d-489b-b273-2afdca024fd6"},"stripe":{"amol":{"apiKey":"sk_test_tNO29lr3TPEvetcJfB4Vf54s","publishableKey":"pk_test_ZlbObLXALEa5wwBShlBitOS3","appName":"Kadira","appLogo":"https://kadira.io/favicon.ico"},"kadirahq":{"apiKey":"sk_test_22QITCBPhqEaEKjHXK5BBwO8","publishableKey":"pk_test_Tc1iVNRP9p8o7zgYWoWjZnm4","appName":"KadiraHQ","appLogo":"https://kadira.io/favicon.ico"}}}