Skip to content

Commit 0b1f272

Browse files
committed
Update ActiveMQ to 5.17.1, fix shellcheck issue in entrypoint.sh
1 parent 9b11cd7 commit 0b1f272

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM bellsoft/liberica-openjdk-alpine:13
22

33
LABEL maintainer="Thomas Lutz <lutz@symptoma.com>"
44

5-
ENV ACTIVEMQ_VERSION 5.17.1
5+
ENV ACTIVEMQ_VERSION 5.17.2
66
ENV ACTIVEMQ apache-activemq-$ACTIVEMQ_VERSION
77
ENV ACTIVEMQ_HOME /opt/activemq
88

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ symptoma/activemq:latest
2626

2727
## ActiveMQ version
2828

29-
Current version of ActiveMQ is **5.17.1**: https://archive.apache.org/dist/activemq/5.17.1/
29+
Current version of ActiveMQ is **5.17.2**: https://archive.apache.org/dist/activemq/5.17.2/
3030

3131
Note: Since ActiveMQ 5.16.0 the Web Console is not reachable by default, as it only listens to 127.0.0.1 inside the container. See [AMQ-8018](https://issues.apache.org/jira/browse/AMQ-8018) for more details.
3232

@@ -68,11 +68,11 @@ The following ports are exposed and can be bound:
6868

6969
First, commit your change to Git.
7070

71-
`git commit -m "Update ActiveMQ to 5.17.1"`
71+
`git commit -m "Update ActiveMQ to 5.17.2"`
7272

7373
Then tag it.
7474

75-
`git tag -a v5.17.1 -m 'Release 5.17.1'`
75+
`git tag -a v5.17.2 -m 'Release 5.17.2'`
7676

7777
Then push it to Github.
7878

@@ -83,7 +83,7 @@ Then push it to Github.
8383
Publishing manually works like this (after `docker login`):
8484

8585
```
86-
docker tag f1aa123a520f symptoma/activemq:5.17.1
86+
docker tag f1aa123a520f symptoma/activemq:5.17.2
8787
docker push symptoma/activemq
8888
```
8989

@@ -96,5 +96,5 @@ Prepare the buildx context and use it:
9696

9797
Then build for multiple platforms:
9898

99-
* `docker buildx build --push --platform linux/arm,linux/arm64,linux/amd64 --tag symptoma/activemq:5.17.1 .`
99+
* `docker buildx build --push --platform linux/arm,linux/arm64,linux/amd64 --tag symptoma/activemq:5.17.2 .`
100100
* `docker buildx build --push --platform linux/arm,linux/arm64,linux/amd64 --tag symptoma/activemq:latest .`

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ activemq_webadmin_pw="admin"
55

66
## Modify jetty.xml
77

8-
# WebConsole to listen on all addresses (beginning with 2.17, it listens on 127.0.0.1 by default, so is unreachable in Container)
8+
# WebConsole to listen on all addresses (beginning with 5.16.0, it listens on 127.0.0.1 by default, so is unreachable in Container)
99
# Bind to all addresses by default. Can be disabled setting ACTIVEMQ_WEBCONSOLE_USE_DEFAULT_ADDRESS=true
10-
if [ ! "$ACTIVEMQ_WEBCONSOLE_USE_DEFAULT_ADDRESS" == "true" ]; then
10+
if [ ! "$ACTIVEMQ_WEBCONSOLE_USE_DEFAULT_ADDRESS" = "true" ]; then
1111
echo "Allowing WebConsole listen to 0.0.0.0"
1212
sed -i 's#<property name="host" value="127.0.0.1"/>#<property name="host" value="0.0.0.0"/>#' conf/jetty.xml
1313
fi

0 commit comments

Comments
 (0)