Assigning to @gsautner for now. Guilherme already worked on the first item of this task as part of his improvements on the XWiki Helm chart (have a way to customize the contents of xwiki.properties and xwiki.cfg through variables).
For the next steps, we'll need to see how to integrate a way to build the docker image of this project directly as part of the build.
Using this plugin we can create Docker images during maven build phases, which enable us to always uptodate image versions from source or have automated releases during maven release.
Always run jib build to always update container images on CI/pipelines executions.
Image with same name of project with tag name: ${project.version}-(mysql|mariadb)-tomcat
On first tests, the default (official) xwiki docker image as base to only append new layers, but this approach create very huge (1.6GB) image since layers are not in good order to this kind of “extension”.
In order get better image size, changed template on xwiki-docker to have the follow targets and layer order:
FROM tomcat:9.0.69-jr11 AS base-tomcat
… all current default actions (install tools/libreoffice, env. scripts volume etc.)
FROM base-tomcat AS xwiki
… layers with xwiki war/settings
FROM xwiki AS xwiki-database
… layer fixing database lib and settings
And using only base-tomcat target on jib plugin as 'from' image, final image have similar size of official one (1.2G)
In order to test on local env.without changing maven version, one layer was added to this image with all extensions present on xip distribution.
To move this preloaded extensions to correct the data directory a new line was added on docker-entrypoint. Nice of this, is have support for more fast startup and maybe a “offiline” support.
Changes made on this project, only wait for pipelines run that container registry will be updated.
Jean-Sébastien Dennebouychanged title from Provide a Docker image for depolying the XWiki instance to Provide a Docker image for deploying the XWiki instance
changed title from Provide a Docker image for depolying the XWiki instance to Provide a Docker image for deploying the XWiki instance