From 71f81fdeda1a3effa4adc3b9ae10f9df4ff62edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20B=C3=BChner?= Date: Thu, 11 Mar 2021 12:25:53 +0100 Subject: [PATCH] Updated Home (markdown) --- Home.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/Home.md b/Home.md index 16e461d..73387f8 100644 --- a/Home.md +++ b/Home.md @@ -1 +1,24 @@ Welcome to the docker wiki! + +We currently have to approaches for a docker image: + +* https://github.com/geoserver/docker/pull/1 (terrestris) +* https://github.com/geoserver/docker/pull/2 (GeoSolutions) + + +Comparison of the possibilities of the Dockerfile: + +| Feature | PR1 (terrestris) | PR2 (geosolutions) | +|------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| Build image with custom GS version
(docker will download WAR) | :heavy_check_mark:
`docker build -t geoserver:test --build-arg GEOSERVER_VERSION=2.18.2 .` | :heavy_check_mark:
`docker build -t geoserver:test --build-arg GEOSERVER_WEBAPP_SRC=https://downloads.sourceforge.net/project/geoserver/GeoServer/2.18.2/geoserver-2.18.2-war.zip .` | +| Build image with custom (local)
WAR file (or zipped WAR) | :heavy_check_mark:
`docker build -t geoserver:test --build-arg GEOSERVER_WAR_SRC="./resources/geoserver.zip" .` | :heavy_check_mark:
`docker build -t geoserver:test --build-arg GEOSERVER_WEBAPP_SRC=./resources/geoserver.zip .` | +| The WAR source can either be
a ZIP or a WAR file | :heavy_check_mark: | :heavy_check_mark: | +| Burn extensions to the image
(docker will download JARs) | :x: | | +| Burn extensions to the image
(local JARs/no download) | :x: (via build arguments)
:heavy_check_mark: (if JARs are included in a local WAR file build) | | +| Control whether CORS should be
enabled in the resulting image | :heavy_check_mark: | :x: | +| Allow to burn a local data dir
to the resulting image | :x: | :heavy_check_mark: | +| Allow to add custom fonts to
the resulting image | :x: | :x: | + +Comparison of a resulting Dockerimage: + +TODO \ No newline at end of file