Skip to content

Commit 1fb1f43

Browse files
author
anair-it
committed
Updated image names and README
1 parent ec6783d commit 1fb1f43

File tree

16 files changed

+50
-37
lines changed

16 files changed

+50
-37
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Note: Hadoop and storm are built on Debian Linux and all others on Alpine Linux
2626
2727

2828
## Building all images
29-
- ``./build.sh``
29+
- Pull from docker hub OR
30+
- Build each image individually
3031

3132
>This will individually build the above mentioned images. This will take sometime and is required to be done only once.
3233

build.sh

Lines changed: 0 additions & 10 deletions
This file was deleted.

docker-compose.yml

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

99
###hbase
1010
hbase:
11-
image: anair/hbase_alpine:1.1.2
11+
image: anoopnair/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: anair/kafka_alpine:0.9.0.1
24+
image: anoopnair/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: anair/storm-nimbus_debian:0.10.0
52+
image: anoopnair/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: anair/storm-supervisor_debian:0.10.0
65+
image: anoopnair/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: anair/storm-ui_debian:0.10.0
74+
image: anoopnair/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: anair/hadoop_debian:2.7.1
85+
image: anoopnair/hadoop_debian:2.7.1
8686
container_name: hadoop
8787
hostname: hadoop
8888
ports:
@@ -103,7 +103,7 @@ hadoop:
103103

104104
##pig
105105
pig:
106-
image: anair/pig_hadoop_debian:0.15.0
106+
image: anoopnair/pig_hadoop_debian:0.15.0
107107
container_name: pig
108108
links:
109109
- hadoop

kafka/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
2-
docker build -t anair/kafka_alpine:0.9.0.1 .
2+
docker build -t anoopnair/kafka_alpine:0.9.0.1 .
33
docker pull sheepkiller/kafka-manager

storm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ http://localhost:49080
2929
## Deploy a topology
3030

3131

32-
docker run -v _HOST-WORKSPACE_:/home/storm --rm --entrypoint storm anair/storm-nimbus_debian:0.10.0 jar /home/storm/_ARTIFACT-NAME_.jar _MAIN-CLASS-PACKAGE_ local -c nimbus.host=`docker inspect --format='{{.NetworkSettings.IPAddress}}' storm-nimbus`
32+
docker run -v _HOST-WORKSPACE_:/home/storm --rm --entrypoint storm anoopnair/storm-nimbus_debian:0.10.0 jar /home/storm/_ARTIFACT-NAME_.jar _MAIN-CLASS-PACKAGE_ local -c nimbus.host=`docker inspect --format='{{.NetworkSettings.IPAddress}}' storm-nimbus`

storm/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
zookeeper:
2-
image: anair/zookeeper_alpine:3.4.6
2+
image: anoopnair/zookeeper_alpine:3.4.6
33
hostname: zk
44
ports:
55
- "2181:2181"
66

77
nimbus:
8-
image: anair/storm-nimbus_debian:0.10.0
8+
image: anoopnair/storm-nimbus_debian:0.10.0
99
ports:
1010
- "49773:3773"
1111
- "49772:3772"
@@ -15,7 +15,7 @@ nimbus:
1515
- zookeeper:zk
1616

1717
supervisor:
18-
image: anair/storm-supervisor_debian:0.10.0
18+
image: anoopnair/storm-supervisor_debian:0.10.0
1919
ports:
2020
- "8000"
2121
- "22"
@@ -24,7 +24,7 @@ supervisor:
2424
- zookeeper:zk
2525

2626
ui:
27-
image: anair/storm-ui_debian:0.10.0
27+
image: anoopnair/storm-ui_debian:0.10.0
2828
ports:
2929
- "49080:8080"
3030
- "22"

storm/storm-nimbus/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM anair/storm_debian:0.10.0
2-
MAINTAINER anair
1+
FROM anoopnair/storm_debian:0.10.0
2+
MAINTAINER Anoop Nair<anoopnair.it@gmail.com>
33

44
LABEL description="Docker Storm Nimbus image"
55

storm/storm-nimbus/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
docker build -t anair/storm-nimbus_debian:0.10.0 .
2+
docker build -t anoopnair/storm-nimbus_debian:0.10.0 .

storm/storm-supervisor/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM anair/storm_debian:0.10.0
2-
MAINTAINER anair
1+
FROM anoopnair/storm_debian:0.10.0
2+
MAINTAINER Anoop Nair<anoopnair.it@gmail.com>
33

44
LABEL description="Docker Storm Supervisor image"
55

storm/storm-supervisor/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
docker build -t anair/storm-supervisor_debian:0.10.0 .
2+
docker build -t anoopnair/storm-supervisor_debian:0.10.0 .

storm/storm-ui/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM anair/storm_debian:0.10.0
2-
MAINTAINER anair
1+
FROM anoopnair/storm_debian:0.10.0
2+
MAINTAINER Anoop Nair<anoopnair.it@gmail.com>
33

44
LABEL description="Docker Storm UI image"
55

storm/storm-ui/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
docker build -t anair/storm-ui_debian:0.10.0 .
2+
docker build -t anoopnair/storm-ui_debian:0.10.0 .

storm/storm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM anair/hadoop_base_debian
2-
MAINTAINER anair
1+
FROM anoopnair/hadoop_base_debian
2+
MAINTAINER Anoop Nair<anoopnair.it@gmail.com>
33

44
LABEL description="Docker Storm base image"
55

storm/storm/Dockerfile~

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
FROM anair/hadoop_base_debian
2+
MAINTAINER anair
3+
4+
LABEL description="Docker Storm base image"
5+
6+
ENV STORM_VERSION 0.10.0
7+
8+
RUN wget -q -O - http://mirrors.sonic.net/apache/storm/apache-storm-$STORM_VERSION/apache-storm-$STORM_VERSION.tar.gz | tar -xzf - -C /opt
9+
10+
ENV STORM_HOME /opt/apache-storm-$STORM_VERSION
11+
RUN groupadd storm; useradd --gid storm --home-dir /home/storm --create-home --shell /bin/bash storm; chown -R storm:storm $STORM_HOME; mkdir /var/log/storm ; chown -R storm:storm /var/log/storm
12+
13+
RUN ln -s $STORM_HOME/bin/storm /usr/bin/storm
14+
15+
ADD storm.yaml $STORM_HOME/conf/storm.yaml
16+
ADD cluster.xml $STORM_HOME/logback/cluster.xml
17+
ADD config-supervisord.sh /usr/bin/config-supervisord.sh
18+
ADD start-supervisor.sh /usr/bin/start-supervisor.sh
19+
20+
RUN echo [supervisord] | tee -a /etc/supervisor/supervisord.conf ; echo nodaemon=true | tee -a /etc/supervisor/supervisord.conf

storm/storm/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
docker build -t anair/storm_debian:0.10.0 .
2+
docker build -t anoopnair/storm_debian:0.10.0 .

storm/storm/build.sh~

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
docker build -t anair/storm_debian:0.10.0 .

0 commit comments

Comments
 (0)