Skip to content

Commit e2ffa52

Browse files
author
anair-it
committed
Corrected docker-compose file
1 parent 29a0f8a commit e2ffa52

File tree

2 files changed

+110
-7
lines changed

2 files changed

+110
-7
lines changed

docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
###zookeeper
22
zookeeper:
3-
image: railinc/zookeeper_alpine:3.4.6
3+
image: anair/zookeeper_alpine:3.4.6
44
container_name: zookeeper
55
hostname: zk
66
ports:
77
- "2181:2181"
88

99
###hbase
1010
hbase:
11-
image: railinc/hbase_alpine:1.1.2
11+
image: anair/hbase_alpine:1.1.2
1212
container_name: hbase
1313
hostname: hbase
1414
ports:
@@ -21,7 +21,7 @@ hbase:
2121

2222
###kafka
2323
kafka:
24-
image: railinc/kafka_alpine:0.9.0.1
24+
image: anair/kafka_alpine:0.9.0.1
2525
hostname: kafka
2626
ports:
2727
- "9092:9092"
@@ -49,7 +49,7 @@ kafka-manager:
4949

5050
###Storm
5151
nimbus:
52-
image: railinc/storm-nimbus_debian:0.10.0
52+
image: anair/storm-nimbus_debian:0.10.0
5353
container_name: storm-nimbus
5454
hostname: nimbus
5555
ports:
@@ -62,7 +62,7 @@ nimbus:
6262
- hbase:hbase
6363

6464
supervisor:
65-
image: railinc/storm-supervisor_debian:0.10.0
65+
image: anair/storm-supervisor_debian:0.10.0
6666
ports:
6767
- "8000"
6868
- "22"
@@ -71,7 +71,7 @@ supervisor:
7171
- zookeeper:zk
7272
- hbase:hbase
7373
ui:
74-
image: railinc/storm-ui_debian:0.10.0
74+
image: anair/storm-ui_debian:0.10.0
7575
container_name: storm-ui
7676
ports:
7777
- "49080:8080"
@@ -82,7 +82,7 @@ ui:
8282

8383
##hadoop
8484
hadoop:
85-
image: railinc/hadoop_debian:2.7.1
85+
image: anair/hadoop_debian:2.7.1
8686
container_name: hadoop
8787
hostname: hadoop
8888
ports:

docker-compose.yml~

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
###zookeeper
2+
zookeeper:
3+
image: railinc/zookeeper_alpine:3.4.6
4+
container_name: zookeeper
5+
hostname: zk
6+
ports:
7+
- "2181:2181"
8+
9+
###hbase
10+
hbase:
11+
image: railinc/hbase_alpine:1.1.2
12+
container_name: hbase
13+
hostname: hbase
14+
ports:
15+
- "60000:60000"
16+
- "60010:60010"
17+
- "60020:60020"
18+
- "60030:60030"
19+
links:
20+
- zookeeper:zk
21+
22+
###kafka
23+
kafka:
24+
image: railinc/kafka_alpine:0.9.0.1
25+
hostname: kafka
26+
ports:
27+
- "9092:9092"
28+
links:
29+
- zookeeper:zk
30+
environment:
31+
KAFKA_ADVERTISED_HOST_NAME: 192.168.56.102
32+
KAFKA_ADVERTISED_PORT: 9092
33+
KAFKA_ZOOKEEPER_CONNECT: "zk:2181"
34+
volumes:
35+
- /var/run/docker.sock:/var/run/docker.sock
36+
37+
kafka-manager:
38+
image: sheepkiller/kafka-manager:latest
39+
container_name: kafka-manager
40+
ports:
41+
- "9000:9000"
42+
links:
43+
- zookeeper:zk
44+
- kafka:kafka
45+
environment:
46+
ZK_HOSTS: "zk:2181"
47+
APPLICATION_SECRET: letmein
48+
KM_ARGS: -Djava.net.preferIPv4Stack=true
49+
50+
###Storm
51+
nimbus:
52+
image: railinc/storm-nimbus_debian:0.10.0
53+
container_name: storm-nimbus
54+
hostname: nimbus
55+
ports:
56+
- "49773:3773"
57+
- "49772:3772"
58+
- "49627:6627"
59+
- "22"
60+
links:
61+
- zookeeper:zk
62+
- hbase:hbase
63+
64+
supervisor:
65+
image: railinc/storm-supervisor_debian:0.10.0
66+
ports:
67+
- "8000"
68+
- "22"
69+
links:
70+
- nimbus:nimbus
71+
- zookeeper:zk
72+
- hbase:hbase
73+
ui:
74+
image: railinc/storm-ui_debian:0.10.0
75+
container_name: storm-ui
76+
ports:
77+
- "49080:8080"
78+
- "22"
79+
links:
80+
- nimbus:nimbus
81+
- zookeeper:zk
82+
83+
##hadoop
84+
hadoop:
85+
image: railinc/hadoop_debian:2.7.1
86+
container_name: hadoop
87+
hostname: hadoop
88+
ports:
89+
- "49707:49707"
90+
- "50010:50010"
91+
- "50020:50020"
92+
- "50030:50030"
93+
- "50070:50070"
94+
- "50075:50075"
95+
- "50090:50090"
96+
- "8030:8030"
97+
- "8031:8031"
98+
- "8032:8032"
99+
- "8033:8033"
100+
- "8040:8040"
101+
- "8042:8042"
102+
- "8088:8088"
103+

0 commit comments

Comments
 (0)