-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
126 lines (116 loc) · 2.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
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
version: '2'
services:
alexandria:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/alexandria:latest
entrypoint:
- java
- -jar
- /app/alexandria-assembly.jar
- --keyspace=alexandria_dev
- --cassandra_hosts=cassandra
- --matches_bucket=matches-dev
links:
- cassandra
ports:
- "22045:22045"
- "22046:22046"
cassandra:
image: cassandra:3.9
volumes:
- /asuna/volume0:/var/lib/cassandra
ports:
- "7000-7001:7000-7001"
- "7199:7199"
- "9042:9042"
- "9160:9160"
charon:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/charon:latest
entrypoint:
- java
- -jar
- /app/charon-assembly.jar
- --riot_api_key=${CHARON_RIOT_KEY}
- --req_per_10min=180000
- --req_per_10sec=3000
- --capacity_multiplier=0.8
ports:
- "5609:5609"
- "5610:5610"
helios:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/helios:latest
entrypoint:
- ./helios
- --lucinda_host=lucinda:45045
- --vulgate_host=vulgate:6205
links:
- lucinda
- vulgate
ports:
- "7921:7921"
- "7922:7922"
legends.ai:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/legends.ai:latest
entrypoint:
- node
- build/server.js
ports:
- "7448:7448"
environment:
- PORT=7448
lucinda:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/lucinda:latest
entrypoint:
- java
- -jar
- /app/lucinda-assembly.jar
- --cassandra_hosts=cassandra
- --redis_host=lucinda-cache
- --vulgate_host=vulgate
- --vulgate_port=6205
links:
- cassandra
- lucinda-cache
- vulgate
ports:
- "45045:45045"
- "45046:45046"
lucinda-cache:
image: redis:3.2.5
nova:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/nova:latest
entrypoint:
- java
- -jar
- /app/nova-assembly.jar
- --redis_host=nova-queue
- --redis_port=6379
- --ingest_max_interval=60
- --ingest_max_batch_size=60
- --alexandria_host=alexandria
- --alexandria_port=22045
- --charon_host=charon
- --charon_port=5609
links:
- alexandria
- charon
- nova-queue
nova-queue:
image: redis:3.2.5
vulgate:
image: 096202052535.dkr.ecr.us-west-2.amazonaws.com/vulgate:latest
entrypoint:
- java
- -jar
- /app/vulgate-assembly.jar
- --charon_host=charon
- --charon_port=5609
- --redis_host=vulgate-cache
- --redis_port=6379
links:
- charon
- vulgate-cache
ports:
- "6205:6205"
- "6206:6206"
vulgate-cache:
image: redis:3.2.5