Skip to content

Commit

Permalink
add activemq 5.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phith0n committed Jul 1, 2017
1 parent feb786e commit 1ea47fb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions base/activemq/5.11.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM vulhub/openjdk:7-jre

ENV ACTIVEMQ_VERSION 5.11.1
ENV ACTIVEMQ apache-activemq-$ACTIVEMQ_VERSION
ENV ACTIVEMQ_TCP=61616 ACTIVEMQ_UI=8161

ENV ACTIVEMQ_HOME /opt/activemq

RUN set -x && \
curl -s -S https://archive.apache.org/dist/activemq/$ACTIVEMQ_VERSION/$ACTIVEMQ-bin.tar.gz | tar xvz -C /opt && \
ln -s /opt/$ACTIVEMQ $ACTIVEMQ_HOME

WORKDIR $ACTIVEMQ_HOME
EXPOSE $ACTIVEMQ_TCP $ACTIVEMQ_UI

CMD ["/bin/sh", "-c", "bin/activemq console"]

0 comments on commit 1ea47fb

Please sign in to comment.