Skip to content

Commit

Permalink
Merge pull request #1 from miguelwill/4.4.3
Browse files Browse the repository at this point in the history
update master to 4.4.3
  • Loading branch information
miguelwill authored Nov 9, 2019
2 parents eb2f58a + d7c18b2 commit 7b35f1c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
**4.4.3**
- openfire: upgrade to 4.4.3
- openjdk: upgraded to 8u232

**4.4.2**
- openfire: upgrade to 4.4.2

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM openjdk:8u222-jre-slim
FROM openjdk:8u232-jre-slim
MAINTAINER gizmotronic@gmail.com

ENV OPENFIRE_VERSION=4.4.2 \
ENV OPENFIRE_VERSION=4.4.3 \
OPENFIRE_USER=openfire \
OPENFIRE_DATA_DIR=/var/lib/openfire \
OPENFIRE_LOG_DIR=/var/log/openfire
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gizmotronic/openfire:4.4.2
# gizmotronic/openfire:4.4.3

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

```bash
docker pull gizmotronic/openfire:4.4.2
docker pull gizmotronic/openfire:4.4.3
```

Alternatively you can build the image yourself.
Expand All @@ -74,7 +74,7 @@ Start Openfire using:
docker run --name openfire -d --restart=always \
--publish 9090:9090 --publish 5222:5222 --publish 7777:7777 \
--volume /srv/docker/openfire:/var/lib/openfire \
gizmotronic/openfire:4.4.2
gizmotronic/openfire:4.4.3
```

*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/)*
Expand All @@ -101,7 +101,7 @@ You may append options to the startup command to configure the JVM:
```bash
docker run -name openfire -d \
[DOCKER_OPTIONS] \
gizmotronic/openfire:4.4.2 \
gizmotronic/openfire:4.4.3 \
-XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode
```

Expand All @@ -122,7 +122,7 @@ To upgrade to newer releases:
1. Download the updated Docker image:

```bash
docker pull gizmotronic/openfire:4.4.2
docker pull gizmotronic/openfire:4.4.3
```

2. Stop the currently running image:
Expand All @@ -142,7 +142,7 @@ To upgrade to newer releases:
```bash
docker run -name openfire -d \
[OPTIONS] \
gizmotronic/openfire:4.4.2
gizmotronic/openfire:4.4.3
```

## Shell Access
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.2
4.4.3
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '2'
services:
openfire:
image: gizmotronic/openfire:4.4.2
image: gizmotronic/openfire:4.4.3
ports:
- "9090:9090/tcp"
- "9091:9091/tcp"
Expand Down

0 comments on commit 7b35f1c

Please sign in to comment.