Skip to content

Commit 4c28574

Browse files
committed
Merge branch 'release-2.4.0' into stable
2 parents d0bddc7 + bf3d966 commit 4c28574

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project follows Zammad versioning.
66

7+
## [2.4.0] - 2018-01-31
8+
### Changed
9+
- Upgrade Zammad version to 2.4.0
10+
711
## [2.3.0] - 2018-01-31
812
### Changed
913
- Upgrade Zammad version to 2.3.0
@@ -20,5 +24,10 @@ and this project follows Zammad versioning.
2024
### Changed
2125
- Upgrade Zammad version to 2.1.0
2226

23-
## [2.0.0] - 2017-10-25
27+
## 2.0.0 - 2017-10-25
2428
Initial release
29+
30+
[2.4.0]: https://github.com/osixia/docker-openldap/compare/v2.3.0...v2.4.0
31+
[2.3.0]: https://github.com/osixia/docker-openldap/compare/v2.2.0...v2.3.0
32+
[2.2.0]: https://github.com/osixia/docker-openldap/compare/v2.1.0...v2.2.0
33+
[2.1.0]: https://github.com/osixia/docker-openldap/compare/v2.0.0...v2.1.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/zammad
2-
VERSION = 2.3.0
2+
VERSION = 2.4.0
33

44
.PHONY: build build-nocache test tag-latest push push-latest release git-tag-version
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![Docker Stars](https://img.shields.io/docker/stars/osixia/zammad.svg)
55
![](https://images.microbadger.com/badges/image/osixia/zammad.svg)
66

7-
Latest release: 2.3.0 - Zammad 2.3.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/zammad/) 
7+
Latest release: 2.4.0 - Zammad 2.4.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/zammad/) 
88

99
**A docker image to run Zammad.**
1010

example/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
- mariadb:/var/lib/mysql
3333

3434
zammad:
35-
image: osixia/zammad:2.3.0
35+
image: osixia/zammad:2.4.0
3636
command: -l info
3737
labels:
3838
- "io.rancher.container.pull_image: always"

example/kubernetes/zammad-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
automountServiceAccountToken: false
1616
containers:
1717
- name: zammad
18-
image: osixia/zammad:2.3.0
18+
image: osixia/zammad:2.4.0
1919
imagePullPolicy: Always
2020
resources:
2121
requests:

image/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ENV ZAMMAD_DIR /home/zammad
55
ENV ZAMMAD_USER zammad
66
ENV RAILS_ENV production
77

8-
ARG ZAMMAD_VERSION=2.3.0
9-
ARG ZAMMAD_MD5=0d118fdde02934e18c0752a033c6a5fb
8+
ARG ZAMMAD_VERSION=2.4.0
9+
ARG ZAMMAD_MD5=97deaaa33b96a1d8a356e102e493ad2a
1010

1111
ARG GOSU_VERSION=1.10
1212

@@ -53,7 +53,7 @@ RUN BUILD_DEPENDENCIES="git build-essential libffi-dev libpq5 libpq-dev" \
5353
&& curl -L -o /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
5454
&& curl -L -o /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
5555
&& export GNUPGHOME="$(mktemp -d)" \
56-
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
56+
&& gpg --recv-keys --keyserver ha.pool.sks-keyservers.net 0xB42F6819007F00F88E364FD4036A9C25BF357DD4 \
5757
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
5858
&& rm -rf "${GNUPGHOME}" /usr/local/bin/gosu.asc \
5959
&& chmod +x /usr/local/bin/gosu \

0 commit comments

Comments
 (0)