diff --git a/Changelog.md b/Changelog.md index 4672365..5e1f4ff 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 diff --git a/Dockerfile b/Dockerfile index abef853..c80185c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/README.md b/README.md index 61ad980..b965c30 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gizmotronic/openfire:4.4.2 +# gizmotronic/openfire:4.4.3 - [Introduction](#introduction) - [Contributing](#contributing) @@ -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. @@ -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/)* @@ -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 ``` @@ -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: @@ -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 diff --git a/VERSION b/VERSION index 1d068c6..9e3a933 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.4.2 +4.4.3 diff --git a/docker-compose.yml b/docker-compose.yml index a3afa13..b39f83a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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"