From 6e2dbe9f61c3ecc44099b7e2860435fc89cd2ebf Mon Sep 17 00:00:00 2001 From: Thomas Mortagne <thomas.mortagne@gmail.com> Date: Wed, 5 Feb 2020 18:32:37 +0100 Subject: [PATCH] XDOCKER-129: Upgrade lts version to 11.10.3 --- 11/mysql-tomcat/.env | 2 +- 11/mysql-tomcat/Dockerfile | 4 ++-- 11/postgres-tomcat/.env | 2 +- 11/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/11/mysql-tomcat/.env b/11/mysql-tomcat/.env index 05a7d59..e316d7e 100644 --- a/11/mysql-tomcat/.env +++ b/11/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=11.10.2 +XWIKI_VERSION=11.10.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/11/mysql-tomcat/Dockerfile b/11/mysql-tomcat/Dockerfile index 4b1f05e..2bdae5d 100644 --- a/11/mysql-tomcat/Dockerfile +++ b/11/mysql-tomcat/Dockerfile @@ -44,9 +44,9 @@ RUN apt-get update && \ # Install XWiki as the ROOT webapp context in Tomcat # Create the Tomcat temporary directory # Configure the XWiki permanent directory -ENV XWIKI_VERSION=11.10.2 +ENV XWIKI_VERSION=11.10.3 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 a904633ccebb9570c50349479818f67fcb3482c7baa1666616f19f389dacb727 +ENV XWIKI_DOWNLOAD_SHA256 fc959c8641d772d90a53bc1976e86fab907d290364cd802b7b3e0304dcbf008b RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/11/postgres-tomcat/.env b/11/postgres-tomcat/.env index 7ae9ebd..2d3b2f1 100644 --- a/11/postgres-tomcat/.env +++ b/11/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=11.10.2 +XWIKI_VERSION=11.10.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/11/postgres-tomcat/Dockerfile b/11/postgres-tomcat/Dockerfile index fc507a9..464e656 100644 --- a/11/postgres-tomcat/Dockerfile +++ b/11/postgres-tomcat/Dockerfile @@ -44,9 +44,9 @@ RUN apt-get update && \ # Install XWiki as the ROOT webapp context in Tomcat # Create the Tomcat temporary directory # Configure the XWiki permanent directory -ENV XWIKI_VERSION=11.10.2 +ENV XWIKI_VERSION=11.10.3 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 a904633ccebb9570c50349479818f67fcb3482c7baa1666616f19f389dacb727 +ENV XWIKI_DOWNLOAD_SHA256 fc959c8641d772d90a53bc1976e86fab907d290364cd802b7b3e0304dcbf008b RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/build.gradle b/build.gradle index b0e3cca..04c4f2d 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '11': [ - xwikiVersion: '11.10.2', - xwikiSha256: 'a904633ccebb9570c50349479818f67fcb3482c7baa1666616f19f389dacb727' + xwikiVersion: '11.10.3', + xwikiSha256: 'fc959c8641d772d90a53bc1976e86fab907d290364cd802b7b3e0304dcbf008b' ], '12': [ xwikiVersion: '12.0', -- GitLab