Skip to content

Commit d9ce6e9

Browse files
committed
5.18.6
1 parent 233933c commit d9ce6e9

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM bellsoft/liberica-openjdk-alpine:17
22

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

5-
ENV ACTIVEMQ_VERSION 5.18.4
6-
ENV ACTIVEMQ apache-activemq-$ACTIVEMQ_VERSION
7-
ENV ACTIVEMQ_HOME /opt/activemq
5+
ENV ACTIVEMQ_VERSION=5.18.6
6+
ENV ACTIVEMQ=apache-activemq-$ACTIVEMQ_VERSION
7+
ENV ACTIVEMQ_HOME=/opt/activemq
88

99
RUN apk add --update curl && \
1010
rm -rf /var/cache/apk/* && \

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ symptoma/activemq:latest
2525

2626
## ActiveMQ version
2727

28-
Current version of ActiveMQ is **5.18.4**: https://archive.apache.org/dist/activemq/5.18.4/
28+
Current version of ActiveMQ is **5.18.6**: https://archive.apache.org/dist/activemq/5.18.6/
2929

3030
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.
3131

@@ -34,23 +34,23 @@ Note: Since ActiveMQ 5.16.0 the Web Console is not reachable by default, as it o
3434
You can define the following environment variables to control the behavior.
3535

3636
| Environment Variable | Default | Description |
37-
|:----------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
37+
| :-------------------------------------- | :------ | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
3838
| ACTIVEMQ_USERNAME | system | [Security](https://activemq.apache.org/security) (credentials.properties) |
3939
| ACTIVEMQ_PASSWORD | manager | [Security](https://activemq.apache.org/security) (credentials.properties) |
4040
| ACTIVEMQ_WEBADMIN_USERNAME | admin | [WebConsole](https://activemq.apache.org/security) (jetty-realm.properties) |
4141
| ACTIVEMQ_WEBADMIN_PASSWORD | admin | [WebConsole](https://activemq.apache.org/security) (jetty-realm.properties) |
4242
| ACTIVEMQ_WEBCONSOLE_USE_DEFAULT_ADDRESS | false | Set default behavior of ActiveMQ Jetty listen address (127.0.0.1). By default, WebConsole listens on all addresses (0.0.0.0), so you can reach/map the WebConsole port (8161) |
4343
| ACTIVEMQ_ADMIN_CONTEXTPATH | /admin | [WebConsole](https://github.com/apache/activemq/blob/main/assembly/src/release/conf/jetty.xml) Set contextPath of WebConsole (jetty.xml) |
4444
| ACTIVEMQ_API_CONTEXTPATH | /api | [API](https://github.com/apache/activemq/blob/main/assembly/src/release/conf/jetty.xml) Set contextPath of API (jetty.xml) |
45-
| ACTIVEMQ_ENABLE_SCHEDULER | false | Enable the scheduler by setting `schedulerSupport` to `true` in `activemq.xml`|
45+
| ACTIVEMQ_ENABLE_SCHEDULER | false | Enable the scheduler by setting `schedulerSupport` to `true` in `activemq.xml` |
4646

4747

4848
## Exposed Ports
4949

5050
The following ports are exposed and can be bound:
5151

5252
| Port | Description |
53-
|:------|:------------|
53+
| :---- | :---------- |
5454
| 1883 | MQTT |
5555
| 5672 | AMPQ |
5656
| 8161 | WebConsole |
@@ -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.18.4"`
71+
`git commit -m "Update ActiveMQ to 5.18.6"`
7272

7373
Then tag it.
7474

75-
`git tag -a v5.18.4 -m 'Release 5.18.4'`
75+
`git tag -a v5.18.6 -m 'Release 5.18.6'`
7676

7777
Then push it to Github.
7878

@@ -81,7 +81,7 @@ Then push it to Github.
8181
Publishing manually works like this (after `docker login`):
8282

8383
```
84-
docker tag <image> symptoma/activemq:5.18.4
84+
docker tag <image> symptoma/activemq:5.18.6
8585
docker push symptoma/activemq
8686
```
8787

@@ -93,5 +93,5 @@ Prepare the buildx context and use it:
9393

9494
Then build for multiple platforms:
9595

96-
* `docker buildx build --push --platform linux/arm64,linux/amd64 --tag symptoma/activemq:5.18.4 .`
96+
* `docker buildx build --push --platform linux/arm64,linux/amd64 --tag symptoma/activemq:5.18.6 .`
9797
* `docker buildx build --push --platform linux/arm64,linux/amd64 --tag symptoma/activemq:latest .`

0 commit comments

Comments
 (0)