chore: use latest versions
parent
8f9edd5503
commit
aa19de31d8
|
|
@ -6,10 +6,10 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
- name: Build image
|
- name: Build image
|
||||||
run: docker build -t geoserver-docker.osgeo.org/geoserver:${{ github.sha }} .
|
run: docker build -t geoserver-docker.osgeo.org/geoserver:${{ github.sha }} .
|
||||||
- name: Run trivy
|
- name: Run trivy
|
||||||
|
|
|
||||||
14
BUILD.md
14
BUILD.md
|
|
@ -65,14 +65,14 @@ Override these arguments to make use of build.geoserver.org nightly releases:
|
||||||
* ``--build-arg STABLE_PLUGIN_URL=https://build.geoserver.org/geoserver/${GS_VERSION}/ext-latest/``
|
* ``--build-arg STABLE_PLUGIN_URL=https://build.geoserver.org/geoserver/${GS_VERSION}/ext-latest/``
|
||||||
* ``--build-arg COMMUNITY_PLUGIN_URL=https://build.geoserver.org/geoserver/${GS_VERSION}/community-latest/``
|
* ``--build-arg COMMUNITY_PLUGIN_URL=https://build.geoserver.org/geoserver/${GS_VERSION}/community-latest/``
|
||||||
|
|
||||||
Here is a working example for building 2.23.x nightly build::
|
Here is a working example for building 2.24.x nightly build::
|
||||||
```
|
```
|
||||||
docker build --no-cache-filter download,install \
|
docker build --no-cache-filter download,install \
|
||||||
--build-arg WAR_ZIP_URL=https://build.geoserver.org/geoserver/2.23.x/geoserver-2.23.x-latest-war.zip \
|
--build-arg WAR_ZIP_URL=https://build.geoserver.org/geoserver/2.24.x/geoserver-2.24.x-latest-war.zip \
|
||||||
--build-arg STABLE_PLUGIN_URL=https://build.geoserver.org/geoserver/2.23.x/ext-latest/ \
|
--build-arg STABLE_PLUGIN_URL=https://build.geoserver.org/geoserver/2.24.x/ext-latest/ \
|
||||||
--build-arg COMMUNITY_PLUGIN_URL=https://build.geoserver.org/geoserver/2.23.x/community-latest/ \
|
--build-arg COMMUNITY_PLUGIN_URL=https://build.geoserver.org/geoserver/2.24.x/community-latest/ \
|
||||||
--build-arg GS_VERSION=2.23-SNAPSHOT \
|
--build-arg GS_VERSION=2.24-SNAPSHOT \
|
||||||
-t 2.23.x .
|
-t 2.24.x .
|
||||||
```
|
```
|
||||||
|
|
||||||
When running both stable extensions and community modules can be included:
|
When running both stable extensions and community modules can be included:
|
||||||
|
|
@ -82,7 +82,7 @@ docker run -it -p 80:8080 \
|
||||||
--env INSTALL_EXTENSIONS=true \
|
--env INSTALL_EXTENSIONS=true \
|
||||||
--env STABLE_EXTENSIONS="ysld" \
|
--env STABLE_EXTENSIONS="ysld" \
|
||||||
--env COMMUNITY_EXTENSIONS="ogcapi" \
|
--env COMMUNITY_EXTENSIONS="ogcapi" \
|
||||||
-t 2.23.x
|
-t 2.24.x
|
||||||
```
|
```
|
||||||
|
|
||||||
Community modules are only available for nightly builds as they have not yet met the requirements for production use. Developers have shared these to attract participation, feedback and funding.
|
Community modules are only available for nightly builds as they have not yet met the requirements for production use. Developers have shared these to attract participation, feedback and funding.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
FROM ubuntu:22.04 as tomcat
|
FROM ubuntu:22.04 as tomcat
|
||||||
|
|
||||||
ARG TOMCAT_VERSION=9.0.83
|
ARG TOMCAT_VERSION=9.0.84
|
||||||
ARG CORS_ENABLED=false
|
ARG CORS_ENABLED=false
|
||||||
ARG CORS_ALLOWED_ORIGINS=*
|
ARG CORS_ALLOWED_ORIGINS=*
|
||||||
ARG CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS
|
ARG CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS
|
||||||
|
|
|
||||||
16
README.md
16
README.md
|
|
@ -18,20 +18,20 @@ This README.md file covers use of official docker image, additional [build](BUIL
|
||||||
To pull an official image use ``docker.osgeo.org/geoserver:{{VERSION}}``, e.g.:
|
To pull an official image use ``docker.osgeo.org/geoserver:{{VERSION}}``, e.g.:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker pull docker.osgeo.org/geoserver:2.23.1
|
docker pull docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
All the images can be found at: [https://repo.osgeo.org](https://repo.osgeo.org)
|
All the images can be found at: [https://repo.osgeo.org](https://repo.osgeo.org)
|
||||||
|
|
||||||
Afterwards you can run the pulled image locally with:
|
Afterwards you can run the pulled image locally with:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run -it -p 80:8080 docker.osgeo.org/geoserver:2.23.1
|
docker run -it -p 80:8080 docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Or if you want to start the container daemonized, use e.g.:
|
Or if you want to start the container daemonized, use e.g.:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run -d -p 80:8080 docker.osgeo.org/geoserver:2.23.1
|
docker run -d -p 80:8080 docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Check <http://localhost/geoserver> to see the geoserver page,
|
Check <http://localhost/geoserver> to see the geoserver page,
|
||||||
|
|
@ -48,7 +48,7 @@ To use an external folder as your geoserver data directory.
|
||||||
```shell
|
```shell
|
||||||
docker run -it -p 80:8080 \
|
docker run -it -p 80:8080 \
|
||||||
--mount src="/absolute/path/on/host",target=/opt/geoserver_data/,type=bind \
|
--mount src="/absolute/path/on/host",target=/opt/geoserver_data/,type=bind \
|
||||||
docker.osgeo.org/geoserver:2.23.1
|
docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
An empty data directory will be populated on first use. You can easily update GeoServer while
|
An empty data directory will be populated on first use. You can easily update GeoServer while
|
||||||
|
|
@ -63,7 +63,7 @@ The environment variable `SKIP_DEMO_DATA` can be set to `true` to create an empt
|
||||||
```shell
|
```shell
|
||||||
docker run -it -p 80:8080 \
|
docker run -it -p 80:8080 \
|
||||||
--env SKIP_DEMO_DATA=true \
|
--env SKIP_DEMO_DATA=true \
|
||||||
docker.osgeo.org/geoserver:2.23.1
|
docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## How to issue a redirect from the root ("/") to GeoServer web interface ("/geoserver/web")?
|
## How to issue a redirect from the root ("/") to GeoServer web interface ("/geoserver/web")?
|
||||||
|
|
@ -89,7 +89,7 @@ Example installing wps and ysld extensions:
|
||||||
```shell
|
```shell
|
||||||
docker run -it -p 80:8080 \
|
docker run -it -p 80:8080 \
|
||||||
--env INSTALL_EXTENSIONS=true --env STABLE_EXTENSIONS="wps,ysld" \
|
--env INSTALL_EXTENSIONS=true --env STABLE_EXTENSIONS="wps,ysld" \
|
||||||
docker.osgeo.org/geoserver:2.23.1
|
docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
The list of extensions (taken from SourceForge download page):
|
The list of extensions (taken from SourceForge download page):
|
||||||
|
|
@ -114,7 +114,7 @@ If you want to add geoserver extensions/libs, place the respective jar files in
|
||||||
```shell
|
```shell
|
||||||
docker run -it -p 80:8080 \
|
docker run -it -p 80:8080 \
|
||||||
--mount src="/dir/with/libs/on/host",target=/opt/additional_libs,type=bind \
|
--mount src="/dir/with/libs/on/host",target=/opt/additional_libs,type=bind \
|
||||||
docker.osgeo.org/geoserver:2.23.1
|
docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## How to add additional fonts to the docker image (e.g. for SLD styling)?
|
## How to add additional fonts to the docker image (e.g. for SLD styling)?
|
||||||
|
|
@ -124,7 +124,7 @@ If you want to add custom fonts (the base image only contains 26 fonts) by using
|
||||||
```shell
|
```shell
|
||||||
docker run -it -p 80:8080 \
|
docker run -it -p 80:8080 \
|
||||||
--mount src="/dir/with/fonts/on/host",target=/opt/additional_fonts,type=bind \
|
--mount src="/dir/with/fonts/on/host",target=/opt/additional_fonts,type=bind \
|
||||||
docker.osgeo.org/geoserver:2.23.1
|
docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
**Note:** Do not change the target value!
|
**Note:** Do not change the target value!
|
||||||
|
|
|
||||||
10
RELEASE.md
10
RELEASE.md
|
|
@ -7,7 +7,7 @@ OSGeo maintains geoserver-docker.osgeo.org repository for publishing. The result
|
||||||
Build locally:
|
Build locally:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker build -t geoserver-docker.osgeo.org/geoserver:2.23.1 .
|
docker build -t geoserver-docker.osgeo.org/geoserver:2.24.1 .
|
||||||
```
|
```
|
||||||
|
|
||||||
Login using with osgeo user id:
|
Login using with osgeo user id:
|
||||||
|
|
@ -19,7 +19,7 @@ docker login geoserver-docker.osgeo.org
|
||||||
Push to osgeo repository:
|
Push to osgeo repository:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker push geoserver-docker.osgeo.org/geoserver:2.23.1
|
docker push geoserver-docker.osgeo.org/geoserver:2.24.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## How to automate release?
|
## How to automate release?
|
||||||
|
|
@ -34,10 +34,10 @@ The third, optional, is used to supply the jenkins build number - triggering a n
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
`./release.sh build 2.22.1`
|
`./release.sh build 2.24.1`
|
||||||
|
|
||||||
`./release.sh publish 2.23.1`
|
`./release.sh publish 2.24.1`
|
||||||
|
|
||||||
`./release.sh buildandpublish 2.22.1`
|
`./release.sh buildandpublish 2.24.1`
|
||||||
|
|
||||||
`./release.sh buildandpublish 2.24-SNAPSHOT 1234`
|
`./release.sh buildandpublish 2.24-SNAPSHOT 1234`
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ function usage() {
|
||||||
echo "$0 <mode> <version> [<build>]"
|
echo "$0 <mode> <version> [<build>]"
|
||||||
echo ""
|
echo ""
|
||||||
echo " mode : The mode. Choose one of 'build', 'publish' or 'buildandpublish'"
|
echo " mode : The mode. Choose one of 'build', 'publish' or 'buildandpublish'"
|
||||||
echo " version : The released version to build an docker image for (eg: 2.23.1, ${MAIN}-SNAPSHOT, ${MAIN}-RC)"
|
echo " version : The released version to build an docker image for (eg: 2.24.1, ${MAIN}-SNAPSHOT, ${MAIN}-RC)"
|
||||||
echo " build : Build number (optional)"
|
echo " build : Build number (optional)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue