From 2e3fb7a19f326c9b49a9c08057e6962ef0b1e83a Mon Sep 17 00:00:00 2001 From: Guillaume Delhumeau <guillaume@guillaumedelhumeau.com> Date: Thu, 9 May 2019 12:55:15 +0200 Subject: [PATCH] XDOCKER-107: Upgrade LTS version to 10.11.8. --- 10/mysql-tomcat/.env | 2 +- 10/mysql-tomcat/Dockerfile | 4 ++-- 10/postgres-tomcat/.env | 2 +- 10/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/10/mysql-tomcat/.env b/10/mysql-tomcat/.env index 0201efb..4572701 100644 --- a/10/mysql-tomcat/.env +++ b/10/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.7 +XWIKI_VERSION=10.11.8 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/mysql-tomcat/Dockerfile b/10/mysql-tomcat/Dockerfile index 15bb402..358e92f 100644 --- a/10/mysql-tomcat/Dockerfile +++ b/10/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=10.11.7 +ENV XWIKI_VERSION=10.11.8 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d343f5bd178d8462ecc7cc53efd26727d314a1905b8fc21cefbb297abe47ecd5 +ENV XWIKI_DOWNLOAD_SHA256 d3ac801e156966b1e5729a5251aa13662262460edcbf903ec8b5e5d98563bf7e RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/10/postgres-tomcat/.env b/10/postgres-tomcat/.env index 9cbf865..e449a4f 100644 --- a/10/postgres-tomcat/.env +++ b/10/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.7 +XWIKI_VERSION=10.11.8 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/postgres-tomcat/Dockerfile b/10/postgres-tomcat/Dockerfile index 4fedcaf..5e2796e 100644 --- a/10/postgres-tomcat/Dockerfile +++ b/10/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=10.11.7 +ENV XWIKI_VERSION=10.11.8 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d343f5bd178d8462ecc7cc53efd26727d314a1905b8fc21cefbb297abe47ecd5 +ENV XWIKI_DOWNLOAD_SHA256 d3ac801e156966b1e5729a5251aa13662262460edcbf903ec8b5e5d98563bf7e 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 f3f6815..c7ff9e9 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '10' : [ - xwikiVersion: '10.11.7', - xwikiSha256: 'd343f5bd178d8462ecc7cc53efd26727d314a1905b8fc21cefbb297abe47ecd5' + xwikiVersion: '10.11.8', + xwikiSha256: 'd3ac801e156966b1e5729a5251aa13662262460edcbf903ec8b5e5d98563bf7e' ], '11': [ xwikiVersion: '11.3', -- GitLab