2020-06-21 08:37:51 +02:00
|
|
|
IMAGE activemq_5.15.13-200621
|
2020-06-21 08:32:40 +02:00
|
|
|
FROM alpine3.11-java8_8.242.08-200621
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-12 16:08:10 +02:00
|
|
|
RUN EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
# Download and install ActiveMQ
|
2020-06-21 08:37:51 +02:00
|
|
|
wget https://archive.apache.org/dist/activemq/5.15.13/apache-activemq-5.15.13-bin.tar.gz -O - | tar xzf - -C /srv
|
|
|
|
mv /srv/apache-activemq-5.15.13 /srv/activemq
|
2018-09-05 17:41:38 +02:00
|
|
|
|
|
|
|
# Create OS user
|
|
|
|
addgroup -S -g 61616 activemq
|
|
|
|
adduser -S -u 61616 -h /srv/activemq -s /bin/false -g activemq -G activemq activemq
|
|
|
|
mkdir /srv/activemq/tmp
|
|
|
|
chown activemq:activemq /srv/activemq/tmp
|
2018-09-12 16:08:10 +02:00
|
|
|
EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2020-03-13 17:03:03 +01:00
|
|
|
COPY image.d
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2020-03-13 17:03:03 +01:00
|
|
|
USER activemq
|
2018-09-07 15:47:44 +02:00
|
|
|
CMD /srv/activemq/bin/activemq console
|