X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fdocker%2FDockerfile;h=b7f303d0ccc4f5fff9f7b8d6432b14ae21544a36;hb=99ac3680dbc0bdf17d1e3ccc53d81c59eaf8be57;hp=9fad2b6305915eca12d96cbeb4cb8bf089a6419b;hpb=88c4aeab197aec7c4b2bba0f3595cc32a718d8cb;p=dmaap%2Fkafka11aaf.git diff --git a/src/main/docker/Dockerfile b/src/main/docker/Dockerfile index 9fad2b6..b7f303d 100644 --- a/src/main/docker/Dockerfile +++ b/src/main/docker/Dockerfile @@ -18,6 +18,7 @@ ADD consumer.properties /opt/etc/consumer.properties ADD producer.properties /opt/etc/producer.properties ADD kafka11aaf-jar-with-dependencies.jar /tmp/kafka11aaf-jar-with-dependencies.jar ADD dmaapMMAgent.jar /tmp/dmaapMMAgent.jar +ADD kafka-run-class.sh /tmp/kafka-run-class.sh RUN chmod a+x /tmp/download-kafka.sh && sync && /tmp/download-kafka.sh && tar xfz /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz -C /opt && rm /tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz && ln -s /opt/kafka_${SCALA_VERSION}-${KAFKA_VERSION} /opt/kafka @@ -28,9 +29,13 @@ ENV PATH ${PATH}:${KAFKA_HOME}/bin 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 +ADD start-kafkaOrMirrorMaker.sh /usr/bin/start-kafkaOrMirrorMaker.sh +ADD start-mirrormaker.sh /usr/bin/start-mirrormaker.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/start-kafkaOrMirrorMaker.sh && \ + chmod a+x /usr/bin/start-mirrormaker.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"] +CMD ["start-kafkaOrMirrorMaker.sh"]