Skip to content

Commit 7b7f2fd

Browse files
authored
fix master template, update postgis (#435)
* fix master, update postgis * fix cgal branch
1 parent e895c5a commit 7b7f2fd

File tree

11 files changed

+106
-49
lines changed

11 files changed

+106
-49
lines changed

13-3.5/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ ARG BASE_IMAGE=postgres:13-alpine3.22
55
FROM ${BASE_IMAGE}
66

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.5.3 spatial database extension with PostgreSQL 13 Alpine" \
8+
org.opencontainers.image.description="PostGIS 3.5.4 spatial database extension with PostgreSQL 13 Alpine" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

11-
ENV POSTGIS_VERSION=3.5.3
12-
ENV POSTGIS_SHA256=44222ed2b8f742ffc1ceb429b09ebb484c7880f9ba27bf7b6b197346cdd25437
11+
ENV POSTGIS_VERSION=3.5.4
12+
ENV POSTGIS_SHA256=7eeef87eabf11aa8cef5f9aa48b03c5632ebae570c3a48e065d48a435d2d1ee4
1313

1414
RUN set -eux \
1515
&& apk add --no-cache --virtual .fetch-deps \

14-3.5/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ ARG BASE_IMAGE=postgres:14-alpine3.22
55
FROM ${BASE_IMAGE}
66

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.5.3 spatial database extension with PostgreSQL 14 Alpine" \
8+
org.opencontainers.image.description="PostGIS 3.5.4 spatial database extension with PostgreSQL 14 Alpine" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

11-
ENV POSTGIS_VERSION=3.5.3
12-
ENV POSTGIS_SHA256=44222ed2b8f742ffc1ceb429b09ebb484c7880f9ba27bf7b6b197346cdd25437
11+
ENV POSTGIS_VERSION=3.5.4
12+
ENV POSTGIS_SHA256=7eeef87eabf11aa8cef5f9aa48b03c5632ebae570c3a48e065d48a435d2d1ee4
1313

1414
RUN set -eux \
1515
&& apk add --no-cache --virtual .fetch-deps \

15-3.5/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ ARG BASE_IMAGE=postgres:15-alpine3.22
55
FROM ${BASE_IMAGE}
66

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.5.3 spatial database extension with PostgreSQL 15 Alpine" \
8+
org.opencontainers.image.description="PostGIS 3.5.4 spatial database extension with PostgreSQL 15 Alpine" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

11-
ENV POSTGIS_VERSION=3.5.3
12-
ENV POSTGIS_SHA256=44222ed2b8f742ffc1ceb429b09ebb484c7880f9ba27bf7b6b197346cdd25437
11+
ENV POSTGIS_VERSION=3.5.4
12+
ENV POSTGIS_SHA256=7eeef87eabf11aa8cef5f9aa48b03c5632ebae570c3a48e065d48a435d2d1ee4
1313

1414
RUN set -eux \
1515
&& apk add --no-cache --virtual .fetch-deps \

16-3.5/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ ARG BASE_IMAGE=postgres:16-alpine3.22
55
FROM ${BASE_IMAGE}
66

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.5.3 spatial database extension with PostgreSQL 16 Alpine" \
8+
org.opencontainers.image.description="PostGIS 3.5.4 spatial database extension with PostgreSQL 16 Alpine" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

11-
ENV POSTGIS_VERSION=3.5.3
12-
ENV POSTGIS_SHA256=44222ed2b8f742ffc1ceb429b09ebb484c7880f9ba27bf7b6b197346cdd25437
11+
ENV POSTGIS_VERSION=3.5.4
12+
ENV POSTGIS_SHA256=7eeef87eabf11aa8cef5f9aa48b03c5632ebae570c3a48e065d48a435d2d1ee4
1313

1414
RUN set -eux \
1515
&& apk add --no-cache --virtual .fetch-deps \

16-master/Dockerfile

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9-
ARG CGAL_GIT_BRANCH=master
9+
ARG CGAL_GIT_BRANCH=main
1010
FROM postgres:16-bullseye as builder
1111

1212
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,11 +83,30 @@ RUN set -ex \
8383
ARG DOCKER_CMAKE_BUILD_TYPE
8484
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8585

86+
# nlohmann/json - header-only library for SFCGAL (with CMake support)
87+
RUN set -ex \
88+
&& mkdir -p /usr/src \
89+
&& cd /usr/src \
90+
# Get the latest release version dynamically
91+
&& NLOHMANN_JSON_VERSION=$(curl -s https://api.github.com/repos/nlohmann/json/releases/latest | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') \
92+
&& echo "Installing nlohmann/json version: ${NLOHMANN_JSON_VERSION}" \
93+
# Download and extract the full source with CMake support
94+
&& curl -L "https://github.com/nlohmann/json/archive/refs/tags/v${NLOHMANN_JSON_VERSION}.tar.gz" -o nlohmann-json.tar.gz \
95+
&& tar -xzf nlohmann-json.tar.gz \
96+
&& cd "json-${NLOHMANN_JSON_VERSION}" \
97+
&& mkdir build \
98+
&& cd build \
99+
&& cmake .. -DCMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE} -DJSON_BuildTests=OFF \
100+
&& make install \
101+
&& cd /usr/src \
102+
&& rm -rf "json-${NLOHMANN_JSON_VERSION}" nlohmann-json.tar.gz \
103+
&& echo "nlohmann/json ${NLOHMANN_JSON_VERSION} installed with CMake support" > /_pgis_nlohmann_json_version.txt
104+
86105
# cgal & sfcgal
87106
ARG CGAL_GIT_BRANCH
88107
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
89-
ENV CGAL_GIT_HASH=b3e2f204a41c1e508a6f018454b60b00aa3dc6fd
90-
ENV SFCGAL_GIT_HASH=bac4309ca1c06ee4fc919d32c84dc463da7170e2
108+
ENV CGAL_GIT_HASH=af9490690393a185fe6c8ff40df158fc3da53c87
109+
ENV SFCGAL_GIT_HASH=fbe878cac797d3096afec7d954ba8fff9b06ce0a
91110
RUN set -ex \
92111
&& mkdir -p /usr/src \
93112
&& cd /usr/src \
@@ -120,7 +139,7 @@ RUN set -ex \
120139
&& rm -fr /usr/src/cgal
121140

122141
# proj
123-
ENV PROJ_GIT_HASH=6ef4961358a7525703c0f485b240582530f01b02
142+
ENV PROJ_GIT_HASH=160e432571fc9679bb08ea9cda54c153f03a1cc2
124143
RUN set -ex \
125144
&& cd /usr/src \
126145
&& git clone https://github.com/OSGeo/PROJ.git \
@@ -150,7 +169,7 @@ RUN set -ex \
150169
&& rm -fr /usr/src/PROJ
151170

152171
# geos
153-
ENV GEOS_GIT_HASH=2e12fa312d8ed12b36839ef20c193b49d695f1d4
172+
ENV GEOS_GIT_HASH=93472ce0f6a02dd5dfcbf8e41eca4e75e714209f
154173
RUN set -ex \
155174
&& cd /usr/src \
156175
&& git clone https://github.com/libgeos/geos.git \
@@ -166,7 +185,7 @@ RUN set -ex \
166185
&& rm -fr /usr/src/geos
167186

168187
# gdal
169-
ENV GDAL_GIT_HASH=b8d0f72f306e7fc0b5a511d96221277797301be5
188+
ENV GDAL_GIT_HASH=d424be4b7c9ff3d2c3b3aa98318eb7c04266f210
170189
RUN set -ex \
171190
&& cd /usr/src \
172191
&& git clone https://github.com/OSGeo/gdal.git \
@@ -299,11 +318,11 @@ COPY --from=builder /usr/local /usr/local
299318

300319
ARG CGAL_GIT_BRANCH
301320
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
302-
ENV CGAL_GIT_HASH=b3e2f204a41c1e508a6f018454b60b00aa3dc6fd
303-
ENV SFCGAL_GIT_HASH=bac4309ca1c06ee4fc919d32c84dc463da7170e2
304-
ENV PROJ_GIT_HASH=6ef4961358a7525703c0f485b240582530f01b02
305-
ENV GEOS_GIT_HASH=2e12fa312d8ed12b36839ef20c193b49d695f1d4
306-
ENV GDAL_GIT_HASH=b8d0f72f306e7fc0b5a511d96221277797301be5
321+
ENV CGAL_GIT_HASH=af9490690393a185fe6c8ff40df158fc3da53c87
322+
ENV SFCGAL_GIT_HASH=fbe878cac797d3096afec7d954ba8fff9b06ce0a
323+
ENV PROJ_GIT_HASH=160e432571fc9679bb08ea9cda54c153f03a1cc2
324+
ENV GEOS_GIT_HASH=93472ce0f6a02dd5dfcbf8e41eca4e75e714209f
325+
ENV GDAL_GIT_HASH=d424be4b7c9ff3d2c3b3aa98318eb7c04266f210
307326

308327
# Minimal command line test ( fail fast )
309328
RUN set -ex \
@@ -322,7 +341,7 @@ RUN set -ex \
322341
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
323342

324343
# install postgis
325-
ENV POSTGIS_GIT_HASH=d1c28c62c4c5de585a11c6b07cd34e7576546d09
344+
ENV POSTGIS_GIT_HASH=02bd21e4479d98ebe5fac1b25dabe17f91406cf8
326345

327346
RUN set -ex \
328347
&& apt-get update \

17-3.5/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ ARG BASE_IMAGE=postgres:17-alpine3.22
55
FROM ${BASE_IMAGE}
66

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.5.3 spatial database extension with PostgreSQL 17 Alpine" \
8+
org.opencontainers.image.description="PostGIS 3.5.4 spatial database extension with PostgreSQL 17 Alpine" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

11-
ENV POSTGIS_VERSION=3.5.3
12-
ENV POSTGIS_SHA256=44222ed2b8f742ffc1ceb429b09ebb484c7880f9ba27bf7b6b197346cdd25437
11+
ENV POSTGIS_VERSION=3.5.4
12+
ENV POSTGIS_SHA256=7eeef87eabf11aa8cef5f9aa48b03c5632ebae570c3a48e065d48a435d2d1ee4
1313

1414
RUN set -eux \
1515
&& apk add --no-cache --virtual .fetch-deps \

17-master/Dockerfile

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9-
ARG CGAL_GIT_BRANCH=master
9+
ARG CGAL_GIT_BRANCH=main
1010
FROM postgres:17-bullseye as builder
1111

1212
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,11 +83,30 @@ RUN set -ex \
8383
ARG DOCKER_CMAKE_BUILD_TYPE
8484
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8585

86+
# nlohmann/json - header-only library for SFCGAL (with CMake support)
87+
RUN set -ex \
88+
&& mkdir -p /usr/src \
89+
&& cd /usr/src \
90+
# Get the latest release version dynamically
91+
&& NLOHMANN_JSON_VERSION=$(curl -s https://api.github.com/repos/nlohmann/json/releases/latest | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') \
92+
&& echo "Installing nlohmann/json version: ${NLOHMANN_JSON_VERSION}" \
93+
# Download and extract the full source with CMake support
94+
&& curl -L "https://github.com/nlohmann/json/archive/refs/tags/v${NLOHMANN_JSON_VERSION}.tar.gz" -o nlohmann-json.tar.gz \
95+
&& tar -xzf nlohmann-json.tar.gz \
96+
&& cd "json-${NLOHMANN_JSON_VERSION}" \
97+
&& mkdir build \
98+
&& cd build \
99+
&& cmake .. -DCMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE} -DJSON_BuildTests=OFF \
100+
&& make install \
101+
&& cd /usr/src \
102+
&& rm -rf "json-${NLOHMANN_JSON_VERSION}" nlohmann-json.tar.gz \
103+
&& echo "nlohmann/json ${NLOHMANN_JSON_VERSION} installed with CMake support" > /_pgis_nlohmann_json_version.txt
104+
86105
# cgal & sfcgal
87106
ARG CGAL_GIT_BRANCH
88107
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
89-
ENV CGAL_GIT_HASH=b3e2f204a41c1e508a6f018454b60b00aa3dc6fd
90-
ENV SFCGAL_GIT_HASH=bac4309ca1c06ee4fc919d32c84dc463da7170e2
108+
ENV CGAL_GIT_HASH=af9490690393a185fe6c8ff40df158fc3da53c87
109+
ENV SFCGAL_GIT_HASH=fbe878cac797d3096afec7d954ba8fff9b06ce0a
91110
RUN set -ex \
92111
&& mkdir -p /usr/src \
93112
&& cd /usr/src \
@@ -120,7 +139,7 @@ RUN set -ex \
120139
&& rm -fr /usr/src/cgal
121140

122141
# proj
123-
ENV PROJ_GIT_HASH=6ef4961358a7525703c0f485b240582530f01b02
142+
ENV PROJ_GIT_HASH=160e432571fc9679bb08ea9cda54c153f03a1cc2
124143
RUN set -ex \
125144
&& cd /usr/src \
126145
&& git clone https://github.com/OSGeo/PROJ.git \
@@ -150,7 +169,7 @@ RUN set -ex \
150169
&& rm -fr /usr/src/PROJ
151170

152171
# geos
153-
ENV GEOS_GIT_HASH=2e12fa312d8ed12b36839ef20c193b49d695f1d4
172+
ENV GEOS_GIT_HASH=93472ce0f6a02dd5dfcbf8e41eca4e75e714209f
154173
RUN set -ex \
155174
&& cd /usr/src \
156175
&& git clone https://github.com/libgeos/geos.git \
@@ -166,7 +185,7 @@ RUN set -ex \
166185
&& rm -fr /usr/src/geos
167186

168187
# gdal
169-
ENV GDAL_GIT_HASH=b8d0f72f306e7fc0b5a511d96221277797301be5
188+
ENV GDAL_GIT_HASH=d424be4b7c9ff3d2c3b3aa98318eb7c04266f210
170189
RUN set -ex \
171190
&& cd /usr/src \
172191
&& git clone https://github.com/OSGeo/gdal.git \
@@ -299,11 +318,11 @@ COPY --from=builder /usr/local /usr/local
299318

300319
ARG CGAL_GIT_BRANCH
301320
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
302-
ENV CGAL_GIT_HASH=b3e2f204a41c1e508a6f018454b60b00aa3dc6fd
303-
ENV SFCGAL_GIT_HASH=bac4309ca1c06ee4fc919d32c84dc463da7170e2
304-
ENV PROJ_GIT_HASH=6ef4961358a7525703c0f485b240582530f01b02
305-
ENV GEOS_GIT_HASH=2e12fa312d8ed12b36839ef20c193b49d695f1d4
306-
ENV GDAL_GIT_HASH=b8d0f72f306e7fc0b5a511d96221277797301be5
321+
ENV CGAL_GIT_HASH=af9490690393a185fe6c8ff40df158fc3da53c87
322+
ENV SFCGAL_GIT_HASH=fbe878cac797d3096afec7d954ba8fff9b06ce0a
323+
ENV PROJ_GIT_HASH=160e432571fc9679bb08ea9cda54c153f03a1cc2
324+
ENV GEOS_GIT_HASH=93472ce0f6a02dd5dfcbf8e41eca4e75e714209f
325+
ENV GDAL_GIT_HASH=d424be4b7c9ff3d2c3b3aa98318eb7c04266f210
307326

308327
# Minimal command line test ( fail fast )
309328
RUN set -ex \
@@ -322,7 +341,7 @@ RUN set -ex \
322341
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
323342

324343
# install postgis
325-
ENV POSTGIS_GIT_HASH=d1c28c62c4c5de585a11c6b07cd34e7576546d09
344+
ENV POSTGIS_GIT_HASH=02bd21e4479d98ebe5fac1b25dabe17f91406cf8
326345

327346
RUN set -ex \
328347
&& apt-get update \

18-3.6/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
FROM postgres:18-trixie
66

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.6.0+dfsg-2.pgdg13+1 spatial database extension with PostgreSQL 18 trixie" \
8+
org.opencontainers.image.description="PostGIS 3.6.0+dfsg-3.pgdg13+1 spatial database extension with PostgreSQL 18 trixie" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

1111
ENV POSTGIS_MAJOR=3
12-
ENV POSTGIS_VERSION=3.6.0+dfsg-2.pgdg13+1
12+
ENV POSTGIS_VERSION=3.6.0+dfsg-3.pgdg13+1
1313

1414
RUN apt-get update \
1515
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \

Dockerfile.master.template

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9-
ARG CGAL_GIT_BRANCH=master
9+
ARG CGAL_GIT_BRANCH=main
1010
FROM postgres:%%PG_MAJOR%%-%%DEBIAN_VERSION%% as builder
1111

1212
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,6 +83,25 @@ RUN set -ex \
8383
ARG DOCKER_CMAKE_BUILD_TYPE
8484
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8585

86+
# nlohmann/json - header-only library for SFCGAL (with CMake support)
87+
RUN set -ex \
88+
&& mkdir -p /usr/src \
89+
&& cd /usr/src \
90+
# Get the latest release version dynamically
91+
&& NLOHMANN_JSON_VERSION=$(curl -s https://api.github.com/repos/nlohmann/json/releases/latest | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') \
92+
&& echo "Installing nlohmann/json version: ${NLOHMANN_JSON_VERSION}" \
93+
# Download and extract the full source with CMake support
94+
&& curl -L "https://github.com/nlohmann/json/archive/refs/tags/v${NLOHMANN_JSON_VERSION}.tar.gz" -o nlohmann-json.tar.gz \
95+
&& tar -xzf nlohmann-json.tar.gz \
96+
&& cd "json-${NLOHMANN_JSON_VERSION}" \
97+
&& mkdir build \
98+
&& cd build \
99+
&& cmake .. -DCMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE} -DJSON_BuildTests=OFF \
100+
&& make install \
101+
&& cd /usr/src \
102+
&& rm -rf "json-${NLOHMANN_JSON_VERSION}" nlohmann-json.tar.gz \
103+
&& echo "nlohmann/json ${NLOHMANN_JSON_VERSION} installed with CMake support" > /_pgis_nlohmann_json_version.txt
104+
86105
# cgal & sfcgal
87106
ARG CGAL_GIT_BRANCH
88107
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This image ensures that the default database created by the parent `postgres` im
2121

2222
Unless `-e POSTGRES_DB` is passed to the container at startup time, this database will be named after the admin user (either `postgres` or the user specified with `-e POSTGRES_USER`). If you would prefer to use the older template database mechanism for enabling PostGIS, the image also provides a PostGIS-enabled template database called `template_postgis`.
2323

24-
## Versions (2025-10-11)
24+
## Versions (2025-11-11)
2525

2626
Supported architecture: `amd64` (x86-64)
2727

@@ -75,11 +75,11 @@ Recommended versions for new users are:
7575
<!-- This part is automatically generated by ./update.sh. Do not modify this section manually. -->
7676
| DockerHub image | Dockerfile | OS | Postgres | PostGIS |
7777
| --------------- | ---------- | -- | -------- | ------- |
78-
| [postgis/postgis:13-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=13-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/13-3.5/alpine/Dockerfile) | alpine:3.22 | 13 | 3.5.3 |
79-
| [postgis/postgis:14-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=14-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/14-3.5/alpine/Dockerfile) | alpine:3.22 | 14 | 3.5.3 |
80-
| [postgis/postgis:15-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=15-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/15-3.5/alpine/Dockerfile) | alpine:3.22 | 15 | 3.5.3 |
81-
| [postgis/postgis:16-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16-3.5/alpine/Dockerfile) | alpine:3.22 | 16 | 3.5.3 |
82-
| [postgis/postgis:17-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=17-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/17-3.5/alpine/Dockerfile) | alpine:3.22 | 17 | 3.5.3 |
78+
| [postgis/postgis:13-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=13-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/13-3.5/alpine/Dockerfile) | alpine:3.22 | 13 | 3.5.4 |
79+
| [postgis/postgis:14-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=14-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/14-3.5/alpine/Dockerfile) | alpine:3.22 | 14 | 3.5.4 |
80+
| [postgis/postgis:15-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=15-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/15-3.5/alpine/Dockerfile) | alpine:3.22 | 15 | 3.5.4 |
81+
| [postgis/postgis:16-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16-3.5/alpine/Dockerfile) | alpine:3.22 | 16 | 3.5.4 |
82+
| [postgis/postgis:17-3.5-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=17-3.5-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/17-3.5/alpine/Dockerfile) | alpine:3.22 | 17 | 3.5.4 |
8383
| [postgis/postgis:17-3.6-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=17-3.6-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/17-3.6/alpine/Dockerfile) | alpine:3.22 | 17 | 3.6.0 |
8484
| [postgis/postgis:18-3.6-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=18-3.6-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/18-3.6/alpine/Dockerfile) | alpine:3.22 | 18 | 3.6.0 |
8585
<!-- alpine_autogenerated_end -->

0 commit comments

Comments
 (0)