Skip to content

Commit

Permalink
Upgrade on Activemq 5.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
disaster37 committed Aug 23, 2015
1 parent c31deaa commit 36c55ea
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

**v3.0.0
- Upgrade to Ubuntu 15.10 and on last OpenJDK-jre
- Upgrade to Activemq 5.12.0

**v2.0.2
- Fix bug when you use persistant container

**v2.0.1
- Add feature to enabled sheduler with parameter (#8)

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ActiveMQ 5.10.0
#ActiveMQ 5.12.0

FROM webcenter/openjdk-jre:8
MAINTAINER Sebastien LANGOUREAUX <[email protected]>
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Dockerfile to build a ActiveMQ container image.

## Version

Current Version: **5.11.1**
Current Version: **5.12.0**

# Hardware Requirements

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

```bash
docker pull webcenter/activemq:5.11.1
docker pull webcenter/activemq:5.12.0
```

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

```bash
docker run --name='activemq' -it --rm \
docker run --name='activemq' -it --rm -P \
webcenter/activemq:latest
```
The account admin is "admin" and password is "admin". All settings is the default ActiveMQ's settings.
Expand All @@ -142,7 +143,10 @@ docker run --name='activemq' -d \
-e 'ACTIVEMQ_ENABLED_SCHEDULER=true' \
-v /data/activemq:/data/activemq \
-v /var/log/activemq:/var/log/activemq \
webcenter/activemq:5.11.1
-p 8161:8161 \
-p 61616:61616 \
-p 61613:61613 \
webcenter/activemq:5.12.0
```


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.11.1
5.12.0
2 changes: 1 addition & 1 deletion assets/setup/install
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e


ACTIVEMQ_VERSION="5.11.1"
ACTIVEMQ_VERSION="5.12.0"
ACTIVEMQ_HOME="/opt/activemq"
SETUP_DIR="/app/setup"
LOG_DIR="/var/log"
Expand Down
2 changes: 1 addition & 1 deletion fig.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
activemq:
image: webcenter/activemq:5.11.1
image: webcenter/activemq:5.12.0

0 comments on commit 36c55ea

Please sign in to comment.