Skip to content

Commit

Permalink
Merge pull request #3 from delta10/feat/add-monitoring-ext
Browse files Browse the repository at this point in the history
Update to 2.24.1, add monitoring extension
  • Loading branch information
bartjkdp authored Jan 10, 2024
2 parents c115c68 + 3a251d7 commit 868eff8
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:22.04 as tomcat

ARG GEOSERVER_VERSION=2.23.3
ARG GEOSERVER_VERSION=2.24.1

ARG STABLE_EXTENSIONS_URL=https://build.geoserver.org/geoserver/2.23.x/ext-latest
ARG STABLE_EXTENSIONS_VERSION=2.23
ARG STABLE_EXTENSIONS_URL=https://build.geoserver.org/geoserver/2.24.x/ext-latest
ARG STABLE_EXTENSIONS_VERSION=2.24

ARG COMMUNITY_EXTENSIONS_URL=https://build.geoserver.org/geoserver/2.23.x/community-latest
ARG COMMUNITY_EXTENSIONS_VERSION=2.23
ARG COMMUNITY_EXTENSIONS_URL=https://build.geoserver.org/geoserver/2.24.x/community-latest
ARG COMMUNITY_EXTENSIONS_VERSION=2.24

ARG TOMCAT_VERSION=9.0.75

Expand Down Expand Up @@ -136,6 +136,12 @@ RUN wget --progress=bar:force:noscroll -c \
-O /opt/additional_libs/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-wps-plugin.zip && \
unzip -q -o -d ${GEOSERVER_LIB_DIR} /opt/additional_libs/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-wps-plugin.zip "*.jar"

# Monitoring plugin
RUN wget --progress=bar:force:noscroll -c \
${STABLE_EXTENSIONS_URL}/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-monitor-plugin.zip \
-O /opt/additional_libs/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-monitor-plugin.zip && \
unzip -q -o -d ${GEOSERVER_LIB_DIR} /opt/additional_libs/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-monitor-plugin.zip "*.jar"

# Cloud Optimized GeoTIFF plugin
RUN wget --progress=bar:force:noscroll -c \
${COMMUNITY_EXTENSIONS_URL}/geoserver-${COMMUNITY_EXTENSIONS_VERSION}-SNAPSHOT-cog-plugin.zip \
Expand Down

0 comments on commit 868eff8

Please sign in to comment.