diff options
author | su622b <sunil.unnava@att.com> | 2018-04-23 12:02:24 -0400 |
---|---|---|
committer | su622b <sunil.unnava@att.com> | 2018-04-23 12:02:53 -0400 |
commit | f5b6899dafee9f9473ee1d7405ede512ce1dc577 (patch) | |
tree | 93bf0506727554c9bd0b717c4cd2f5e67dbbc1cc /demo/docker_files/Dockerfile-local | |
parent | 0643517a9fd0d4d23ebef740e2b3cc18f41c9318 (diff) |
Move HEAT files to MR project
Issue-ID: DMAAP-433
Change-Id: Ib7ac91d0fb3e99f345ba640ed4647b09d62ed5ff
Signed-off-by: su622b <sunil.unnava@att.com>
Diffstat (limited to 'demo/docker_files/Dockerfile-local')
-rw-r--r-- | demo/docker_files/Dockerfile-local | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/demo/docker_files/Dockerfile-local b/demo/docker_files/Dockerfile-local new file mode 100644 index 0000000..4909af3 --- /dev/null +++ b/demo/docker_files/Dockerfile-local @@ -0,0 +1,22 @@ +FROM anapsix/alpine-java + +MAINTAINER Wurstmeister + +RUN apk add --update tar wget curl docker coreutils + +ENV KAFKA_VERSION="0.8.1.1" SCALA_VERSION="2.9.2" +COPY kafka_2.9.2-0.8.1.1.tgz /tmp/kafka_2.9.2-0.8.1.1.tgz +RUN tar xfz /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz -C /opt + +VOLUME ["/kafka"] + +ENV KAFKA_HOME /opt/kafka_2.9.2-0.8.1.1 +ADD start-kafka.sh /usr/bin/start-kafka.sh +ADD broker-list.sh /usr/bin/broker-list.sh +ADD create-topics.sh /usr/bin/create-topics.sh +# The scripts need to have executable permission +RUN chmod a+x /usr/bin/start-kafka.sh && \ + chmod a+x /usr/bin/broker-list.sh && \ + chmod a+x /usr/bin/create-topics.sh +# Use "exec" form so that it runs as PID 1 (useful for graceful shutdown) +CMD ["start-kafka.sh"] |