File tree Expand file tree Collapse file tree 2 files changed +110
-7
lines changed Expand file tree Collapse file tree 2 files changed +110
-7
lines changed Original file line number Diff line number Diff line change 1
1
# ##zookeeper
2
2
zookeeper :
3
- image : railinc /zookeeper_alpine:3.4.6
3
+ image : anair /zookeeper_alpine:3.4.6
4
4
container_name : zookeeper
5
5
hostname : zk
6
6
ports :
7
7
- " 2181:2181"
8
8
9
9
# ##hbase
10
10
hbase :
11
- image : railinc /hbase_alpine:1.1.2
11
+ image : anair /hbase_alpine:1.1.2
12
12
container_name : hbase
13
13
hostname : hbase
14
14
ports :
21
21
22
22
# ##kafka
23
23
kafka :
24
- image : railinc /kafka_alpine:0.9.0.1
24
+ image : anair /kafka_alpine:0.9.0.1
25
25
hostname : kafka
26
26
ports :
27
27
- " 9092:9092"
@@ -49,7 +49,7 @@ kafka-manager:
49
49
50
50
# ##Storm
51
51
nimbus :
52
- image : railinc /storm-nimbus_debian:0.10.0
52
+ image : anair /storm-nimbus_debian:0.10.0
53
53
container_name : storm-nimbus
54
54
hostname : nimbus
55
55
ports :
@@ -62,7 +62,7 @@ nimbus:
62
62
- hbase:hbase
63
63
64
64
supervisor :
65
- image : railinc /storm-supervisor_debian:0.10.0
65
+ image : anair /storm-supervisor_debian:0.10.0
66
66
ports :
67
67
- " 8000"
68
68
- " 22"
@@ -71,7 +71,7 @@ supervisor:
71
71
- zookeeper:zk
72
72
- hbase:hbase
73
73
ui :
74
- image : railinc /storm-ui_debian:0.10.0
74
+ image : anair /storm-ui_debian:0.10.0
75
75
container_name : storm-ui
76
76
ports :
77
77
- " 49080:8080"
82
82
83
83
# #hadoop
84
84
hadoop :
85
- image : railinc /hadoop_debian:2.7.1
85
+ image : anair /hadoop_debian:2.7.1
86
86
container_name : hadoop
87
87
hostname : hadoop
88
88
ports :
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments