diff --git a/.azure-pipelines/templates/release-jobs.yml b/.azure-pipelines/templates/release-jobs.yml index 0c6d653..85d76af 100644 --- a/.azure-pipelines/templates/release-jobs.yml +++ b/.azure-pipelines/templates/release-jobs.yml @@ -19,6 +19,9 @@ jobs: echo "Docker tag is: ${VERSION}" docker tag adferrand/backuppc adferrand/backuppc:4 docker tag adferrand/backuppc "adferrand/backuppc:${VERSION}" + docker push "adferrand/backuppc:${VERSION}" + docker push adferrand/backuppc:4 + docker push adferrand/backuppc displayName: Tag and push Docker images to DockerHub - job: github pool: diff --git a/CHANGELOG.md b/CHANGELOG.md index 0669834..503a707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## master - CURRENT +## 4.4.0-6 - 28/06/2021 +### Modified +* Update base image to Alpine 3.14.0 +* Explicitly enable `mod_openssl` lighttpd module when TLS is enabled (#56) + +## 4.4.0-5 - 28/06/2021 +### Modified +* Fix Docker images deployment + ## 4.4.0-4 - 13/11/2020 ### Added * The system configuration file `/etc/msmtprc` for `msmtprc` is not overwritten diff --git a/Dockerfile b/Dockerfile index ffc8308..cfeb167 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.12.1 +FROM alpine:3.14.0 LABEL maintainer="Adrien Ferrand " diff --git a/VERSION b/VERSION index 2010045..1eae947 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.4.0-4 \ No newline at end of file +4.4.0-6 \ No newline at end of file