forked from freekode/docker-activemq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
freekode
committed
Nov 24, 2020
1 parent
a57fb6c
commit 877d1a5
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
FROM openjdk:11 | ||
|
||
ENV ACTIVEMQ_VERSION 5.16.0 | ||
ENV ACTIVEMQ apache-activemq-$ACTIVEMQ_VERSION | ||
ENV ACTIVEMQ_TCP=61616 ACTIVEMQ_AMQP=5672 ACTIVEMQ_STOMP=61613 ACTIVEMQ_MQTT=1883 ACTIVEMQ_WS=61614 ACTIVEMQ_UI=8161 | ||
ENV SHA512_VAL=999928176e57b0805e8a53834e7f4eb648baf271a0c60de31ebd95fa63f2b089aa41c2ef7353790835e2e8cc39c4b778f535b38e6dc0c67a79c3c1da335c4a0a | ||
|
||
ENV ACTIVEMQ_HOME /opt/activemq | ||
|
||
|
||
RUN curl "https://archive.apache.org/dist/activemq/$ACTIVEMQ_VERSION/$ACTIVEMQ-bin.tar.gz" -o $ACTIVEMQ-bin.tar.gz | ||
|
||
# Validate checksum | ||
RUN if [ "$SHA512_VAL" != "$(sha512sum $ACTIVEMQ-bin.tar.gz | awk '{print($1)}')" ];\ | ||
then \ | ||
echo "sha512 values doesn't match! exiting." && \ | ||
exit 1; \ | ||
fi; | ||
|
||
RUN tar xzf $ACTIVEMQ-bin.tar.gz -C /opt && \ | ||
ln -s /opt/$ACTIVEMQ $ACTIVEMQ_HOME && \ | ||
useradd -r -M -d $ACTIVEMQ_HOME activemq && \ | ||
chown -R activemq:activemq /opt/$ACTIVEMQ && \ | ||
chown -h activemq:activemq $ACTIVEMQ_HOME | ||
|
||
USER activemq | ||
|
||
WORKDIR $ACTIVEMQ_HOME | ||
EXPOSE $ACTIVEMQ_TCP $ACTIVEMQ_AMQP $ACTIVEMQ_STOMP $ACTIVEMQ_MQTT $ACTIVEMQ_WS $ACTIVEMQ_UI | ||
|
||
CMD ["/bin/sh", "-c", "bin/activemq console"] |