Skip to content

Commit 36c55ea

Browse files
committed
Upgrade on Activemq 5.12.0
1 parent c31deaa commit 36c55ea

6 files changed

Lines changed: 19 additions & 8 deletions

File tree

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
**v3.0.0
4+
- Upgrade to Ubuntu 15.10 and on last OpenJDK-jre
5+
- Upgrade to Activemq 5.12.0
6+
7+
**v2.0.2
8+
- Fix bug when you use persistant container
9+
310
**v2.0.1
411
- Add feature to enabled sheduler with parameter (#8)
512

Dockerfile

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

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

README.md

Lines changed: 8 additions & 4 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.11.1**
31+
Current Version: **5.12.0**
3232

3333
# Hardware Requirements
3434

@@ -47,6 +47,7 @@ You can set the memory that you need :
4747
docker run --name='activemq' -it --rm \
4848
-e 'ACTIVEMQ_MIN_MEMORY=512' \
4949
-e 'ACTIVEMQ_MAX_MEMORY=2048'\
50+
-P
5051
webcenter/activemq:latest
5152
```
5253
This sample lauch ActiveMQ in docker with 512 MB of memory, and then ACtiveMQ can take 2048 MB of max memory
@@ -97,7 +98,7 @@ In your issue report please make sure you provide the following information:
9798
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.
9899

99100
```bash
100-
docker pull webcenter/activemq:5.11.1
101+
docker pull webcenter/activemq:5.12.0
101102
```
102103

103104
You can also pull the `latest` tag which is built from the repository *HEAD*
@@ -121,7 +122,7 @@ You can launch the image using the docker command line :
121122
- **For test purpose :**
122123

123124
```bash
124-
docker run --name='activemq' -it --rm \
125+
docker run --name='activemq' -it --rm -P \
125126
webcenter/activemq:latest
126127
```
127128
The account admin is "admin" and password is "admin". All settings is the default ActiveMQ's settings.
@@ -142,7 +143,10 @@ docker run --name='activemq' -d \
142143
-e 'ACTIVEMQ_ENABLED_SCHEDULER=true' \
143144
-v /data/activemq:/data/activemq \
144145
-v /var/log/activemq:/var/log/activemq \
145-
webcenter/activemq:5.11.1
146+
-p 8161:8161 \
147+
-p 61616:61616 \
148+
-p 61613:61613 \
149+
webcenter/activemq:5.12.0
146150
```
147151

148152

VERSION

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

assets/setup/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44

5-
ACTIVEMQ_VERSION="5.11.1"
5+
ACTIVEMQ_VERSION="5.12.0"
66
ACTIVEMQ_HOME="/opt/activemq"
77
SETUP_DIR="/app/setup"
88
LOG_DIR="/var/log"

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.11.1
2+
image: webcenter/activemq:5.12.0

0 commit comments

Comments
 (0)