official-images icon indicating copy to clipboard operation
official-images copied to clipboard

Pulsar 2.10.2

Open peiit opened this issue 3 years ago • 1 comments

peiit avatar Dec 06 '22 04:12 peiit

Diff for 4e89cde1ca385b6fbc7bce2dbc52ed24a948929c:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index bdfae4a..e0aec7a 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1 +1,7 @@
-Maintainers: New Image! :D (@docker-library-bot)
+Maintainers: Pei Jiang <[email protected]> (@pei.jiang)
+GitRepo: https://github.com/peiit/pulsar-docker.git
+
+Tags: 2.10.2, latest
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: a88d7782af84cf70be4558b6702e532ed106735c
+Directory: 2.10.2
diff --git a/_bashbrew-list b/_bashbrew-list
index e69de29..ad4549e 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -0,0 +1,2 @@
+pulsar:2.10.2
+pulsar:latest
diff --git a/pulsar_latest/Dockerfile b/pulsar_latest/Dockerfile
new file mode 100644
index 0000000..b62e21c
--- /dev/null
+++ b/pulsar_latest/Dockerfile
@@ -0,0 +1,20 @@
+FROM eclipse-temurin:17-jre
+
+ARG PUSLAR_VERSION=2.10.2
+
+RUN mkdir /pulsar && chmod g+w /pulsar
+
+RUN wget "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=pulsar/pulsar-${PUSLAR_VERSION}/apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz" -O apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz \
+    && wget "https://downloads.apache.org/pulsar/pulsar-${PUSLAR_VERSION}/apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz.sha512" -O apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz.sha512  \
+    && cat apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz.sha512 |sha512sum -c - \
+    && tar -zxvf apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz \
+    && mv apache-pulsar-${PUSLAR_VERSION}/* /pulsar/ \
+    && rm -rf apache-pulsar-${PUSLAR_VERSION} apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz apache-pulsar-${PUSLAR_VERSION}-bin.tar.gz.sha512
+
+WORKDIR /pulsar
+
+ENV PULSAR_ROOT_LOGGER=INFO,CONSOLE
+
+EXPOSE 6650 8080
+
+CMD [ "bin/pulsar", "standalone"]

github-actions[bot] avatar Dec 06 '22 04:12 github-actions[bot]

Hello! :sparkles:

Thanks for your interest in contributing to the official images program. :thought_balloon:

As you may have noticed, we've usually got a pretty decently sized queue of new images (not to mention image updates and maintenance of images under @docker-library which are maintained by the core official images team). As such, it may be some time before we get to reviewing this image (image updates get priority both because users expect them and because reviewing new images is a more involved process than reviewing updates), so we apologize in advance! Please be patient with us -- rest assured, we've seen your PR and it's in the queue. :heart:

We do try to proactively add and update the "new image checklist" on each PR, so if you haven't looked at it yet, that's a good use of time while you wait. :umbrella:

Thanks! :sparkling_heart: :blue_heart: :green_heart: :heart:

yosifkit avatar Jan 10 '23 00:01 yosifkit

My first question would be whether you've been in contact with Apache Pulsar upstream to see if they're either interested in being involved, maintaining the image, providing their blessing for your ownership/maintainership of it, or would even rather there weren't an official image for Apache Pulsar at all (which has happened before)? :pray: :sweat_smile:

tianon avatar Apr 08 '24 23:04 tianon