Skip to content

Commit 395b15b

Browse files
committed
Upgrade to Openfire 4.5.4
Summary: Reference: https://download.igniterealtime.org/openfire/docs/latest/changelog.html Test Plan: Build on Dwellers. Deploy on docker-001. Reviewers: dereckson Reviewed By: dereckson Differential Revision: https://devcentral.nasqueron.org/D2357
1 parent e76b3cf commit 395b15b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM openjdk:8u242-jre-slim
22

3-
ENV OPENFIRE_VERSION=4.5.3 \
3+
ENV OPENFIRE_VERSION=4.5.4 \
44
OPENFIRE_USER=openfire \
55
OPENFIRE_DATA_DIR=/var/lib/openfire \
66
OPENFIRE_LOG_DIR=/var/log/openfire

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nasqueron/openfire:4.5.3
1+
# nasqueron/openfire:4.5.4
22

33
- [Introduction](#introduction)
44
- [Contributing](#contributing)
@@ -48,7 +48,7 @@ If the above recommendations do not help then [report your issue](../../issues/n
4848
Automated builds of the image are available on [Dockerhub](https://hub.docker.com/r/nasqueron/openfire) and is the recommended method of installation.
4949

5050
```bash
51-
docker pull nasqueron/openfire:4.5.3
51+
docker pull nasqueron/openfire:4.5.4
5252
```
5353

5454
Alternatively you can build the image yourself.
@@ -65,7 +65,7 @@ Start Openfire using:
6565
docker run --name openfire -d --restart=always \
6666
--publish 9090:9090 --publish 5222:5222 --publish 7777:7777 \
6767
--volume /srv/docker/openfire:/var/lib/openfire \
68-
nasqueron/openfire:4.5.3
68+
nasqueron/openfire:4.5.4
6969
```
7070

7171
*Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)*
@@ -92,7 +92,7 @@ You may append options to the startup command to configure the JVM:
9292
```bash
9393
docker run -name openfire -d \
9494
[DOCKER_OPTIONS] \
95-
nasqueron/openfire:4.5.3 \
95+
nasqueron/openfire:4.5.4 \
9696
-XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode
9797
```
9898

@@ -113,7 +113,7 @@ To upgrade to newer releases:
113113
1. Download the updated Docker image:
114114

115115
```bash
116-
docker pull nasqueron/openfire:4.5.3
116+
docker pull nasqueron/openfire:4.5.4
117117
```
118118

119119
2. Stop the currently running image:
@@ -133,7 +133,7 @@ To upgrade to newer releases:
133133
```bash
134134
docker run -name openfire -d \
135135
[OPTIONS] \
136-
nasqueron/openfire:4.5.3
136+
nasqueron/openfire:4.5.4
137137
```
138138

139139
## Shell Access

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.3
1+
4.5.4

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
openfire:
4-
image: nasqueron/openfire:4.5.3
4+
image: nasqueron/openfire:4.5.4
55
ports:
66
- "9090:9090/tcp"
77
- "9091:9091/tcp"

0 commit comments

Comments
 (0)