Skip to content

Commit

Permalink
fix docker username and lib dep
Browse files Browse the repository at this point in the history
  • Loading branch information
fdc-am committed Mar 17, 2016
1 parent dff693a commit 9ac391e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker-testsetup/container/hadoop-env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM axm/hadoop
FROM michaxm/hadoop

ENV HADOOP_PREFIX /usr/local/hadoop
ENV HADOOP_COMMON_HOME /usr/local/hadoop
Expand Down
2 changes: 1 addition & 1 deletion docker-testsetup/container/hadoop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM axm/java
FROM michaxm/java

RUN curl -s http://ftp.halifax.rwth-aachen.de/apache/hadoop/common/hadoop-2.7.1/hadoop-2.7.1.tar.gz | tar -xz -C /usr/local
RUN cd /usr/local && ln -s ./hadoop-2.7.1 hadoop
2 changes: 1 addition & 1 deletion docker-testsetup/container/java/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM axm/base-extended
FROM michaxm/base-extended
RUN \
echo "===> add webupd8 repository..." && \
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list && \
Expand Down
4 changes: 3 additions & 1 deletion docker-testsetup/container/task-distribution-base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM axm/hadoop-env
FROM michaxm/hadoop-env

RUN apt-get update && apt-get upgrade -y && apt-get install libbz2-dev

#setup & rarely changing dependencies
RUN cd /usr/local && git clone https://github.com/michaxm/task-distribution.git
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM axm/task-distribution
FROM michaxm/task-distribution

#hdfs filtering example
ADD example.bash /usr/local/task-distribution/example.bash
Expand Down
2 changes: 1 addition & 1 deletion docker-testsetup/container/task-distribution/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM axm/task-distribution-base
FROM michaxm/task-distribution-base

#provide scripts for starting name/datanodes (see docker-compose)
ADD start-datanode.bash /usr/local/bin/start-datanode.bash
Expand Down

0 comments on commit 9ac391e

Please sign in to comment.