Skip to content

Commit cca48f8

Browse files
authored
update 3.4.0beta2 --> 3.4.0rc1 (#353)
Changes to be committed: modified: .github/workflows/main.yml modified: 14-master/Dockerfile renamed: 15-3.4.0beta2/Dockerfile -> 15-3.4.0rc1/Dockerfile renamed: 15-3.4.0beta2/alpine/Dockerfile -> 15-3.4.0rc1/alpine/Dockerfile renamed: 15-3.4.0beta2/alpine/initdb-postgis.sh -> 15-3.4.0rc1/alpine/initdb-postgis.sh renamed: 15-3.4.0beta2/alpine/update-postgis.sh -> 15-3.4.0rc1/alpine/update-postgis.sh modified: 15-master/Dockerfile renamed: 16beta2-3.4.0beta2/Dockerfile -> 16beta2-3.4.0rc1/Dockerfile renamed: 16beta2-3.4.0beta2/alpine/Dockerfile -> 16beta2-3.4.0rc1/alpine/Dockerfile renamed: 16beta2-3.4.0beta2/alpine/initdb-postgis.sh -> 16beta2-3.4.0rc1/alpine/initdb-postgis.sh renamed: 16beta2-3.4.0beta2/alpine/update-postgis.sh -> 16beta2-3.4.0rc1/alpine/update-postgis.sh modified: 16beta2-master/Dockerfile modified: README.md
1 parent 4e1bf4e commit cca48f8

File tree

13 files changed

+32
-32
lines changed

13 files changed

+32
-32
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
postgis: master
3030
variant: default
3131
- postgres: 15
32-
postgis: 3.4.0beta2
32+
postgis: 3.4.0rc1
3333
variant: alpine
3434
- postgres: 16beta2
35-
postgis: 3.4.0beta2
35+
postgis: 3.4.0rc1
3636
variant: alpine
3737

3838
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }} variant ${{ matrix.variant }}

14-master/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8888
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
8989
ARG CGAL_GIT_BRANCH
9090
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91-
ENV CGAL5X_GIT_HASH dd3b569e7abd66ba181d8d5567b62b1b88f187d1
91+
ENV CGAL5X_GIT_HASH edf855967dd10dff04318b0cdde980f397194565
9292
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
9393
RUN set -ex \
9494
&& mkdir -p /usr/src \
@@ -152,7 +152,7 @@ RUN set -ex \
152152
&& rm -fr /usr/src/PROJ
153153

154154
# geos
155-
ENV GEOS_GIT_HASH 3d4870f7970dfac1b090e8a0d05d9b969a9d1180
155+
ENV GEOS_GIT_HASH 193dacad1128de3a9be032eaf13a0f4081fcae76
156156
RUN set -ex \
157157
&& cd /usr/src \
158158
&& git clone https://github.com/libgeos/geos.git \
@@ -168,7 +168,7 @@ RUN set -ex \
168168
&& rm -fr /usr/src/geos
169169

170170
# gdal
171-
ENV GDAL_GIT_HASH d5ae41aed1960dfd511d3c1edfbcefbe85d1adb2
171+
ENV GDAL_GIT_HASH 3e4dc710a2d4cff1f02b70ca5c4df280a5378ae0
172172
RUN set -ex \
173173
&& cd /usr/src \
174174
&& git clone https://github.com/OSGeo/gdal.git \
@@ -301,11 +301,11 @@ COPY --from=builder /usr/local /usr/local
301301

302302
ARG CGAL_GIT_BRANCH
303303
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304-
ENV CGAL5X_GIT_HASH dd3b569e7abd66ba181d8d5567b62b1b88f187d1
304+
ENV CGAL5X_GIT_HASH edf855967dd10dff04318b0cdde980f397194565
305305
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
306306
ENV PROJ_GIT_HASH fde3d58e4af51f8e6c9cafeeb2b0299ab1218d91
307-
ENV GEOS_GIT_HASH 3d4870f7970dfac1b090e8a0d05d9b969a9d1180
308-
ENV GDAL_GIT_HASH d5ae41aed1960dfd511d3c1edfbcefbe85d1adb2
307+
ENV GEOS_GIT_HASH 193dacad1128de3a9be032eaf13a0f4081fcae76
308+
ENV GDAL_GIT_HASH 3e4dc710a2d4cff1f02b70ca5c4df280a5378ae0
309309

310310
# Minimal command line test ( fail fast )
311311
RUN set -ex \
@@ -324,7 +324,7 @@ RUN set -ex \
324324
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
325325

326326
# install postgis
327-
ENV POSTGIS_GIT_HASH 6c7661430ebcce4521b23bd97b0a0d2be5ea027d
327+
ENV POSTGIS_GIT_HASH 111e4a133b3e036cf634826ab05e7217ebc81cbf
328328

329329
RUN set -ex \
330330
&& apt-get update \
File renamed without changes.

15-3.4.0beta2/alpine/Dockerfile renamed to 15-3.4.0rc1/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.18
55
FROM ${BASE_IMAGE}
66

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

11-
ENV POSTGIS_VERSION 3.4.0beta2
12-
ENV POSTGIS_SHA256 9460f546b02e95958ce3c4c763d75aa4dc8d44d559a9d5a108ef0e718671b3aa
11+
ENV POSTGIS_VERSION 3.4.0rc1
12+
ENV POSTGIS_SHA256 113cd54983823858f958c46941c2a06219e1d8d67913e6c93e18df2b94a50c58
1313

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

15-master/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8888
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
8989
ARG CGAL_GIT_BRANCH
9090
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91-
ENV CGAL5X_GIT_HASH dd3b569e7abd66ba181d8d5567b62b1b88f187d1
91+
ENV CGAL5X_GIT_HASH edf855967dd10dff04318b0cdde980f397194565
9292
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
9393
RUN set -ex \
9494
&& mkdir -p /usr/src \
@@ -152,7 +152,7 @@ RUN set -ex \
152152
&& rm -fr /usr/src/PROJ
153153

154154
# geos
155-
ENV GEOS_GIT_HASH 3d4870f7970dfac1b090e8a0d05d9b969a9d1180
155+
ENV GEOS_GIT_HASH 193dacad1128de3a9be032eaf13a0f4081fcae76
156156
RUN set -ex \
157157
&& cd /usr/src \
158158
&& git clone https://github.com/libgeos/geos.git \
@@ -168,7 +168,7 @@ RUN set -ex \
168168
&& rm -fr /usr/src/geos
169169

170170
# gdal
171-
ENV GDAL_GIT_HASH d5ae41aed1960dfd511d3c1edfbcefbe85d1adb2
171+
ENV GDAL_GIT_HASH 3e4dc710a2d4cff1f02b70ca5c4df280a5378ae0
172172
RUN set -ex \
173173
&& cd /usr/src \
174174
&& git clone https://github.com/OSGeo/gdal.git \
@@ -301,11 +301,11 @@ COPY --from=builder /usr/local /usr/local
301301

302302
ARG CGAL_GIT_BRANCH
303303
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304-
ENV CGAL5X_GIT_HASH dd3b569e7abd66ba181d8d5567b62b1b88f187d1
304+
ENV CGAL5X_GIT_HASH edf855967dd10dff04318b0cdde980f397194565
305305
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
306306
ENV PROJ_GIT_HASH fde3d58e4af51f8e6c9cafeeb2b0299ab1218d91
307-
ENV GEOS_GIT_HASH 3d4870f7970dfac1b090e8a0d05d9b969a9d1180
308-
ENV GDAL_GIT_HASH d5ae41aed1960dfd511d3c1edfbcefbe85d1adb2
307+
ENV GEOS_GIT_HASH 193dacad1128de3a9be032eaf13a0f4081fcae76
308+
ENV GDAL_GIT_HASH 3e4dc710a2d4cff1f02b70ca5c4df280a5378ae0
309309

310310
# Minimal command line test ( fail fast )
311311
RUN set -ex \
@@ -324,7 +324,7 @@ RUN set -ex \
324324
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
325325

326326
# install postgis
327-
ENV POSTGIS_GIT_HASH 6c7661430ebcce4521b23bd97b0a0d2be5ea027d
327+
ENV POSTGIS_GIT_HASH 111e4a133b3e036cf634826ab05e7217ebc81cbf
328328

329329
RUN set -ex \
330330
&& apt-get update \
File renamed without changes.

16beta2-3.4.0beta2/alpine/Dockerfile renamed to 16beta2-3.4.0rc1/alpine/Dockerfile

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

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

11-
ENV POSTGIS_VERSION 3.4.0beta2
12-
ENV POSTGIS_SHA256 9460f546b02e95958ce3c4c763d75aa4dc8d44d559a9d5a108ef0e718671b3aa
11+
ENV POSTGIS_VERSION 3.4.0rc1
12+
ENV POSTGIS_SHA256 113cd54983823858f958c46941c2a06219e1d8d67913e6c93e18df2b94a50c58
1313

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

16beta2-master/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8888
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
8989
ARG CGAL_GIT_BRANCH
9090
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91-
ENV CGAL5X_GIT_HASH dd3b569e7abd66ba181d8d5567b62b1b88f187d1
91+
ENV CGAL5X_GIT_HASH edf855967dd10dff04318b0cdde980f397194565
9292
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
9393
RUN set -ex \
9494
&& mkdir -p /usr/src \
@@ -152,7 +152,7 @@ RUN set -ex \
152152
&& rm -fr /usr/src/PROJ
153153

154154
# geos
155-
ENV GEOS_GIT_HASH 3d4870f7970dfac1b090e8a0d05d9b969a9d1180
155+
ENV GEOS_GIT_HASH 193dacad1128de3a9be032eaf13a0f4081fcae76
156156
RUN set -ex \
157157
&& cd /usr/src \
158158
&& git clone https://github.com/libgeos/geos.git \
@@ -168,7 +168,7 @@ RUN set -ex \
168168
&& rm -fr /usr/src/geos
169169

170170
# gdal
171-
ENV GDAL_GIT_HASH d5ae41aed1960dfd511d3c1edfbcefbe85d1adb2
171+
ENV GDAL_GIT_HASH 3e4dc710a2d4cff1f02b70ca5c4df280a5378ae0
172172
RUN set -ex \
173173
&& cd /usr/src \
174174
&& git clone https://github.com/OSGeo/gdal.git \
@@ -301,11 +301,11 @@ COPY --from=builder /usr/local /usr/local
301301

302302
ARG CGAL_GIT_BRANCH
303303
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304-
ENV CGAL5X_GIT_HASH dd3b569e7abd66ba181d8d5567b62b1b88f187d1
304+
ENV CGAL5X_GIT_HASH edf855967dd10dff04318b0cdde980f397194565
305305
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
306306
ENV PROJ_GIT_HASH fde3d58e4af51f8e6c9cafeeb2b0299ab1218d91
307-
ENV GEOS_GIT_HASH 3d4870f7970dfac1b090e8a0d05d9b969a9d1180
308-
ENV GDAL_GIT_HASH d5ae41aed1960dfd511d3c1edfbcefbe85d1adb2
307+
ENV GEOS_GIT_HASH 193dacad1128de3a9be032eaf13a0f4081fcae76
308+
ENV GDAL_GIT_HASH 3e4dc710a2d4cff1f02b70ca5c4df280a5378ae0
309309

310310
# Minimal command line test ( fail fast )
311311
RUN set -ex \
@@ -324,7 +324,7 @@ RUN set -ex \
324324
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
325325

326326
# install postgis
327-
ENV POSTGIS_GIT_HASH 6c7661430ebcce4521b23bd97b0a0d2be5ea027d
327+
ENV POSTGIS_GIT_HASH 111e4a133b3e036cf634826ab05e7217ebc81cbf
328328

329329
RUN set -ex \
330330
&& apt-get update \

README.md

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

1919
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`.
2020

21-
# Versions (2023-07-29)
21+
# Versions (2023-08-06)
2222

2323
Supported architecture: `amd64`
2424

@@ -64,11 +64,11 @@ Recommended version for new users: `postgis/postgis:15-3.3`
6464
| DockerHub image | Dockerfile | OS | Postgres | PostGIS |
6565
| --------------- | ---------- | -- | -------- | ------- |
6666
| [postgis/postgis:14-master](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=14-master) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/14-master/Dockerfile) | debian:bullseye | 14 | development: postgis, geos, proj, gdal |
67-
| [postgis/postgis:15-3.4.0beta2-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=15-3.4.0beta2-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/15-3.4.0beta2/alpine/Dockerfile) | alpine:3.18 | 15 | 3.4.0beta2 |
67+
| [postgis/postgis:15-3.4.0rc1-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=15-3.4.0rc1-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/15-3.4.0rc1/alpine/Dockerfile) | alpine:3.18 | 15 | 3.4.0rc1 |
6868
| [postgis/postgis:15-master](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=15-master) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/15-master/Dockerfile) | debian:bullseye | 15 | development: postgis, geos, proj, gdal |
6969
| [postgis/postgis:16beta2-3.3](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16beta2-3.3) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16beta2-3.3/Dockerfile) | debian:bullseye | 16beta2 | 3.3.4 |
7070
| [postgis/postgis:16beta2-3.3-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16beta2-3.3-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16beta2-3.3/alpine/Dockerfile) | alpine:3.18 | 16beta2 | 3.3.4 |
71-
| [postgis/postgis:16beta2-3.4.0beta2-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16beta2-3.4.0beta2-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16beta2-3.4.0beta2/alpine/Dockerfile) | alpine:3.18 | 16beta2 | 3.4.0beta2 |
71+
| [postgis/postgis:16beta2-3.4.0rc1-alpine](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16beta2-3.4.0rc1-alpine) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16beta2-3.4.0rc1/alpine/Dockerfile) | alpine:3.18 | 16beta2 | 3.4.0rc1 |
7272
| [postgis/postgis:16beta2-master](https://registry.hub.docker.com/r/postgis/postgis/tags?page=1&name=16beta2-master) | [Dockerfile](https://github.com/postgis/docker-postgis/blob/master/16beta2-master/Dockerfile) | debian:bullseye | 16beta2 | development: postgis, geos, proj, gdal |
7373

7474
## Usage

0 commit comments

Comments
 (0)