This repository has been archived by the owner on Jun 5, 2022. It is now read-only.
forked from kadira-open/kadira-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (61 loc) · 2.32 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
version: '2'
services:
kadira-engine:
build: ./kadira-engine
ports:
- "10001:80"
environment:
- PORT=80
- MONGO_URL=mongodb://dev:chord@localhost:27017/kadira
network_mode: "host"
kadira-rma:
build: ./kadira-rma
environment:
- MONGO_SHARD=one
- MONGO_URL=mongodb://dev:chord@localhost:27017/kadira
network_mode: "host"
kadira-api:
build: ./kadira-api
ports:
- "10002:80"
environment:
- PORT=80
- MONGO_APP_URL=mongodb://dev:chord@localhost:27017/kadira
- MONGO_SHARD_URL_one=mongodb://dev:chord@localhost:27017/kadira
# - MAIL_URL=smtp://user:[email protected]: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
network_mode: "host"
kadira-ui:
build: ./kadira-ui
ports:
- "10003:80"
network_mode: "host"
environment:
- PORT=80
- ROOT_URL=http://localhost:10003
- MONGO_URL=mongodb://dev:chord@localhost:27017/kadira
- MONGO_SHARD_URL_one=mongodb://dev:chord@localhost:27017/kadira
#- MAIL_URL=smtp://user:[email protected]: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"}}}
# To be added more upcoming next
#kadira-alertsman:
# build: ./kadira-alertsman
# ports:
# - "10004:80"
# network_mode: "host"
# environment:
# - PORT=80
# - MONGO_APP_URL=mongodb://dev:chord@localhost:27017/kadira
# - MONGO_SHARD_URL_one=mongodb://dev:chord@localhost:27017/kadira
#mongo:
# image: mongo:latest --storageEngine=wiredTiger
# network_mode: "host"