Page MenuHomeDevCentral

No OneTemporary

diff --git a/Changelog.md b/Changelog.md
index 8a63e13..00ba75e 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,60 +1,63 @@
# Changelog
+**4.2.3**
+- openfire: upgrade to 4.2.3
+
**4.2.2**
- openfire: upgrade to 4.2.2
- java: upgrade to 8u161
**4.2.1**
- openfire: upgrade to 4.2.1
**4.1.6**
- openfire: upgrade to 4.1.6
- java: upgrade to 8u151
**4.1.5-1**
- java: upgrade to 8u144
**4.1.5**
- openfire: upgrade to 4.1.5
**4.1.4**
- openfire: upgrade to 4.1.4
- java: upgrade to 8u131
**4.1.3**
- openfire: upgrade to 4.1.3
**4.1.2**
- openfire: upgrade to 4.1.2
**4.1.1**
- openfire: upgrade to 4.1.1
- java: use Oracle Java 8
- Publish more useful ports
**3.10.3**
- openfire: upgrade to 3.10.3
**3.10.2-1**
- persistent data volume moved to `/var/lib/openfire`
**3.10.2**
- openfire: upgrade to 3.10.2
**3.10.0**
- More directory structure reorganization
- openfire: upgrade to 3.10.0
**3.9.3-4**
- Redefined directory structure in data volume
- Create `VERSION` file in data volume
**3.9.3-3**
- base image update to fix SSL vulnerability
**3.9.3-2**
- upgrade to sameersbn/debian:jessie.20141001, plugs shellshock
**3.9.3-1**
- update to the sameersbn/ubuntu:14.04.20140818 baseimage
- initial version 3.9.3
diff --git a/Dockerfile b/Dockerfile
index c5087f9..0f0904a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,23 +1,23 @@
FROM gizmotronic/oracle-java:8u161
MAINTAINER gizmotronic@gmail.com
-ENV OPENFIRE_VERSION=4.2.2 \
+ENV OPENFIRE_VERSION=4.2.3 \
OPENFIRE_USER=openfire \
OPENFIRE_DATA_DIR=/var/lib/openfire \
OPENFIRE_LOG_DIR=/var/log/openfire
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y sudo \
&& echo "Downloading openfire_${OPENFIRE_VERSION}_all.deb ..." \
&& wget --no-verbose "http://download.igniterealtime.org/openfire/openfire_${OPENFIRE_VERSION}_all.deb" -O /tmp/openfire_${OPENFIRE_VERSION}_all.deb \
&& dpkg -i /tmp/openfire_${OPENFIRE_VERSION}_all.deb \
&& mv /var/lib/openfire/plugins/admin /usr/share/openfire/plugin-admin \
&& rm -rf openfire_${OPENFIRE_VERSION}_all.deb \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /sbin/entrypoint.sh
RUN chmod 755 /sbin/entrypoint.sh
EXPOSE 3478/tcp 3479/tcp 5222/tcp 5223/tcp 5229/tcp 5275/tcp 5276/tcp 5262/tcp 5263/tcp 7070/tcp 7443/tcp 7777/tcp 9090/tcp 9091/tcp
VOLUME ["${OPENFIRE_DATA_DIR}"]
ENTRYPOINT ["/sbin/entrypoint.sh"]
diff --git a/README.md b/README.md
index 27846fa..9f8a53d 100644
--- a/README.md
+++ b/README.md
@@ -1,152 +1,148 @@
-# gizmotronic/openfire:4.2.2
+# gizmotronic/openfire:4.2.3
- [Introduction](#introduction)
- [Contributing](#contributing)
- [Issues](#issues)
- [Announcements](../../issues/1)
- [Getting started](#getting-started)
- [Installation](#installation)
- [Quickstart](#quickstart)
- [Persistence](#persistence)
- [Logs](#logs)
- [References](#references)
# Introduction
`Dockerfile` to create a [Docker](https://www.docker.com/) container image for [Openfire](http://www.igniterealtime.org/projects/openfire/).
Openfire is a real time collaboration (RTC) server licensed under the Open Source Apache License. It uses the only widely adopted open protocol for instant messaging, XMPP (also called Jabber). Openfire is incredibly easy to setup and administer, but offers rock-solid security and performance.
This project is almost entirely identical to [sameersbn/openfire](/sameersbn/openfire).
## Contributing
If you find this image useful here's how you can help:
- Send a pull request with your awesome features and bug fixes
- Help users resolve their [issues](../../issues?q=is%3Aopen+is%3Aissue).
- Support the development of this image with a [donation](http://www.damagehead.com/donate/)
-## Known issue
-
-- When upgrading to 4.2.x you may need to [add some missing server properties](https://discourse.igniterealtime.org/t/keystore-problem-cannot-convert-combined-of-type-class-java-lang-string-to-class-org-jivesoftware-openfire-spi-connectiontype) to resolve a problem with managing TLS/SSL certificates.
-
## Other issues
Before reporting a bug please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker [installation guide](https://docs.docker.com/installation) for instructions.
SELinux users should try disabling SELinux using the command `setenforce 0` to see if it resolves the issue.
If the above recommendations do not help then [report your issue](../../issues/new) along with the following information:
- Output of the `docker version` and `docker info` commands
- The `docker run` command or `docker-compose.yml` used to start the image. Mask out the sensitive bits.
- Please state if you are using [Boot2Docker](http://www.boot2docker.io), [VirtualBox](https://www.virtualbox.org), etc.
# Getting started
## Installation
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.2.2
+docker pull gizmotronic/openfire:4.2.3
```
Alternatively you can build the image yourself.
```bash
docker build -t gizmotronic/openfire github.com/gizmotronic/docker-openfire
```
## Quickstart
Start Openfire using:
```bash
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.2.2
+ gizmotronic/openfire:4.2.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/)*
Point your browser to http://localhost:9090 and follow the setup procedure to complete the installation. The [Build A Free Jabber Server In 10 Minutes](https://www.youtube.com/watch?v=ytUB5qJm5HE#t=246s) video by HAKK5 should help you with the configuration and also introduce you to some of its features.
## Persistence
For the Openfire to preserve its state across container shutdown and startup you should mount a volume at `/var/lib/openfire`.
> *The [Quickstart](#quickstart) command already mounts a volume for persistence.*
SELinux users should update the security context of the host mountpoint so that it plays nicely with Docker:
```bash
mkdir -p /srv/docker/openfire
chcon -Rt svirt_sandbox_file_t /srv/docker/openfire
```
## Java VM options
You may append options to the startup command to configure the JVM:
```bash
docker run -name openfire -d \
[DOCKER_OPTIONS] \
- gizmotronic/openfire:4.2.2 \
+ gizmotronic/openfire:4.2.3 \
-XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode
```
## Logs
To access the Openfire logs, located at `/var/log/openfire`, you can use `docker exec`. For example, if you want to tail the logs:
```bash
docker exec -it openfire tail -f /var/log/openfire/info.log
```
# Maintenance
## Upgrading
To upgrade to newer releases:
1. Download the updated Docker image:
```bash
- docker pull gizmotronic/openfire:4.2.2
+ docker pull gizmotronic/openfire:4.2.3
```
2. Stop the currently running image:
```bash
docker stop openfire
```
3. Remove the stopped container
```bash
docker rm -v openfire
```
4. Start the updated image
```bash
docker run -name openfire -d \
[OPTIONS] \
- gizmotronic/openfire:4.2.2
+ gizmotronic/openfire:4.2.3
```
## Shell Access
For debugging and maintenance purposes you may want access the containers shell. If you are using Docker version `1.3.0` or higher you can access a running containers shell by starting `bash` using `docker exec`:
```bash
docker exec -it openfire bash
```
# References
* http://www.igniterealtime.org/projects/openfire/
* https://library.linode.com/communications/xmpp/openfire/ubuntu-12.04-precise-pangolin
diff --git a/VERSION b/VERSION
index af8c8ec..f2c6cb6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-4.2.2
+4.2.3
diff --git a/docker-compose.yml b/docker-compose.yml
index 39cd8da..62bec06 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,12 +1,12 @@
version: '2'
services:
openfire:
- image: gizmotronic/openfire:4.2.2
+ image: gizmotronic/openfire:4.2.3
ports:
- "9090:9090/tcp"
- "9091:9091/tcp"
- "5222:5222/tcp"
- "7777:7777/tcp"
volumes:
- /srv/docker/openfire/data:/var/lib/openfire
- /srv/docker/openfire/logs:/var/log/openfire

File Metadata

Mime Type
text/x-diff
Expires
Tue, Jul 29, 14:17 (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2853032
Default Alt Text
(8 KB)

Event Timeline