-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (53 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
53 lines (53 loc) · 1.08 KB
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
discovery:
image: kbastani/twitter-discovery:latest
ports:
- "8761:8761"
links:
- config
config:
image: kbastani/twitter-configuration:latest
ports:
- "8888:8888"
hdfs:
image: sequenceiq/hadoop-docker:2.4.1
command: /etc/bootstrap.sh -d -bash
mazerunner:
image: kbastani/neo4j-graph-analytics:latest
links:
- hdfs
graphdb:
image: kbastani/docker-neo4j:latest
ports:
- "7474:7474"
- "1337:1337"
volumes:
- /opt/data
links:
- mazerunner
- hdfs
rabbit:
image: rabbitmq:3
twitter-rank-web:
image: kbastani/twitter-rank-web:latest
ports:
- "8081:8081"
links:
- config
- discovery
environment:
SPRING_PROFILES_ACTIVE: "production"
twitter-rank-crawler:
image: kbastani/twitter-rank-crawler:latest
ports:
- "8080:8080"
links:
- config
- discovery
- rabbit
- graphdb
environment:
SPRING_SOCIAL_TWITTER_ACCESSTOKENSECRET: "REPLACE"
SPRING_SOCIAL_TWITTER_ACCESSTOKEN: "REPLACE"
SPRING_SOCIAL_TWITTER_APPSECRET: "REPLACE"
SPRING_SOCIAL_TWITTER_APPID: "REPLACE"
SPRING_PROFILES_ACTIVE: "production"