Skip to content

Commit 39eb8ef

Browse files
committed
Merge pull request #12 from rutebanken/master
Update ActiveMQ version 5.12.0 to 5.13.0
2 parents 36c55ea + cb4c614 commit 39eb8ef

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#ActiveMQ 5.12.0
1+
#ActiveMQ 5.13.0
22

33
FROM webcenter/openjdk-jre:8
44
MAINTAINER Sebastien LANGOUREAUX <linuxworkgroup@hotmail.com>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Dockerfile to build a ActiveMQ container image.
2828

2929
## Version
3030

31-
Current Version: **5.12.0**
31+
Current Version: **5.13.0**
3232

3333
# Hardware Requirements
3434

@@ -98,7 +98,7 @@ In your issue report please make sure you provide the following information:
9898
Pull the image from the docker index. This is the recommended method of installation as it is easier to update image. These builds are performed by the **Docker Trusted Build** service.
9999

100100
```bash
101-
docker pull webcenter/activemq:5.12.0
101+
docker pull webcenter/activemq:5.13.0
102102
```
103103

104104
You can also pull the `latest` tag which is built from the repository *HEAD*
@@ -134,10 +134,10 @@ docker run --name='activemq' -d \
134134
-e 'ACTIVEMQ_NAME=amqp-srv1' \
135135
-e 'ACTIVEMQ_REMOVE_DEFAULT_ACCOUNT=true' \
136136
-e 'ACTIVEMQ_ADMIN_LOGIN=admin' -e 'ACTIVEMQ_ADMIN_PASSWORD=your_password' \
137-
-e 'ACTIVEMQ_WRITE_LOGIN=producer_login' -e 'ACTIVEMQ_WRITE_PASSWORD=producer_password'
137+
-e 'ACTIVEMQ_WRITE_LOGIN=producer_login' -e 'ACTIVEMQ_WRITE_PASSWORD=producer_password' \
138138
-e 'ACTIVEMQ_READ_LOGIN=consumer_login' -e 'ACTIVEMQ_READ_PASSWORD=consumer_password' \
139139
-e 'ACTIVEMQ_JMX_LOGIN=jmx_login' -e 'ACTIVEMQ_JMX_PASSWORD=jmx_password' \
140-
-e 'ACTIVEMQ_STATIC_TOPICS=topic1;topic2;topic3'
140+
-e 'ACTIVEMQ_STATIC_TOPICS=topic1;topic2;topic3' \
141141
-e 'ACTIVEMQ_STATIC_QUEUES=queue1;queue2;queue3' \
142142
-e 'ACTIVEMQ_MIN_MEMORY=1024' -e 'ACTIVEMQ_MAX_MEMORY=4096' \
143143
-e 'ACTIVEMQ_ENABLED_SCHEDULER=true' \
@@ -146,7 +146,7 @@ docker run --name='activemq' -d \
146146
-p 8161:8161 \
147147
-p 61616:61616 \
148148
-p 61613:61613 \
149-
webcenter/activemq:5.12.0
149+
webcenter/activemq:5.13.0
150150
```
151151

152152

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.12.0
1+
5.13.0

assets/setup/.install.swp

Whitespace-only changes.

assets/setup/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44

5-
ACTIVEMQ_VERSION="5.12.0"
5+
ACTIVEMQ_VERSION="5.13.0"
66
ACTIVEMQ_HOME="/opt/activemq"
77
SETUP_DIR="/app/setup"
88
LOG_DIR="/var/log"
@@ -11,7 +11,7 @@ DATA_DIR="/data"
1111
# Start install
1212
mkdir -p ${ACTIVEMQ_HOME}
1313
cd /usr/src
14-
curl -LO http://mir2.ovh.net/ftp.apache.org/dist/activemq/${ACTIVEMQ_VERSION}/apache-activemq-${ACTIVEMQ_VERSION}-bin.tar.gz
14+
curl -LO http://apache.uib.no/activemq/${ACTIVEMQ_VERSION}/apache-activemq-${ACTIVEMQ_VERSION}-bin.tar.gz
1515
tar -xvzf apache-activemq-${ACTIVEMQ_VERSION}-bin.tar.gz
1616
mv apache-activemq-${ACTIVEMQ_VERSION}/* ${ACTIVEMQ_HOME}
1717
rm -rf /usr/src/*

fig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
activemq:
2-
image: webcenter/activemq:5.12.0
2+
image: webcenter/activemq:5.13.0

0 commit comments

Comments
 (0)