-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
71 lines (65 loc) · 1.13 KB
/
docker-compose.yml
File metadata and controls
71 lines (65 loc) · 1.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
zookeeper:
image: infynyxx/zookeeper
ports:
- "2181:2181"
- "22"
kafka:
image: infynyxx/kafka
ports:
- "9092:9092"
links:
- zookeeper:zk
environment:
#localhost
KAFKA_ADVERTISED_HOST_NAME: 127.0.0.1
volumes:
- /var/run/docker.sock:/var/run/docker.sock
druidcoordinator:
build: druid
command: coordinator
links:
- zookeeper:zk
- mysql:mysql
ports:
- "8002:8002"
environment:
- MYSQL_ROOT_PASSWORD=doesntreallymatter
- MYSQL_USER=druid
- MYSQL_PASSWORD=diurd
- MYSQL_DATABASE=druid
druidhistorical:
build: druid
command: historical
links:
- zookeeper:zk
ports:
- "8081:8081"
environment:
- s3_access_key=yolo
- s3_secret_key=yolo
- s3_bucket=nomi-druid-dev
- JAVA_MEMORY=1g
druidbroker:
build: druid
command: broker
ports:
- "8080:8080"
links:
- zookeeper:zk
druidoverlord:
build: druid
command: overlord
links:
- zookeeper:zk
- mysql:mysql
ports:
- "8087:8087"
nimbus:
image: infynyxx/storm-nimbus
ports:
- "49773:3773"
- "49772:3772"
- "49627:6627"
- "22"
links:
- zookeeper:zk