Skip to content

Commit 6c43b39

Browse files
authored
Update postgis 3.4.2 ; Remove 11-3.3 as EOL (#376)
* Changes: - ./update.sh ( update to postgis 3.4.2 ) - remove '11-3.3' versions as EOL - add placeholder .circleci/config.yml - update README.md * update GithubCI - remove 11-3.3
1 parent e99af59 commit 6c43b39

File tree

21 files changed

+78
-331
lines changed

21 files changed

+78
-331
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2.1
2+
3+
jobs:
4+
# build:
5+
# docker:
6+
# - image: cimg/base:stable
7+
# steps:
8+
# - checkout
9+
# - run: echo "This job is configured but will never run because it's commented out."
10+
11+
workflows:
12+
# version: 2
13+
# build_and_test:
14+
# jobs:
15+
# - build
16+
17+
# This config file is a placeholder and does not define any active jobs or workflows.

.github/workflows/main.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ jobs:
2525
- postgres: 16
2626
postgis: master
2727
variant: default
28-
- postgres: 11
29-
postgis: 3.3
30-
variant: default
31-
- postgres: 11
32-
postgis: 3.3
33-
variant: alpine
3428

3529
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }} variant ${{ matrix.variant }}
3630
runs-on: ubuntu-20.04
@@ -41,13 +35,13 @@ jobs:
4135

4236
steps:
4337
- name: Checkout source
44-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
4539

4640
- name: Build docker image for ${{ env.VERSION }} ${{ env.VARIANT }}
4741
run: make test
4842

4943
- name: Login to dockerhub
50-
uses: docker/login-action@v2
44+
uses: docker/login-action@v3
5145
if: ${{ (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') }}
5246
with:
5347
username: ${{ secrets.DOCKERHUB_USERNAME }}

11-3.3/Dockerfile

Lines changed: 0 additions & 28 deletions
This file was deleted.

11-3.3/alpine/Dockerfile

Lines changed: 0 additions & 124 deletions
This file was deleted.

11-3.3/alpine/initdb-postgis.sh

Lines changed: 0 additions & 25 deletions
This file was deleted.

11-3.3/alpine/update-postgis.sh

Lines changed: 0 additions & 28 deletions
This file was deleted.

11-3.3/initdb-postgis.sh

Lines changed: 0 additions & 25 deletions
This file was deleted.

11-3.3/update-postgis.sh

Lines changed: 0 additions & 28 deletions
This file was deleted.

12-3.4/Dockerfile

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

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.4.1+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 12 bullseye" \
8+
org.opencontainers.image.description="PostGIS 3.4.2+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 12 bullseye" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

1111
ENV POSTGIS_MAJOR 3
12-
ENV POSTGIS_VERSION 3.4.1+dfsg-1.pgdg110+1
12+
ENV POSTGIS_VERSION 3.4.2+dfsg-1.pgdg110+1
1313

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

12-3.4/alpine/Dockerfile

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

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

11-
ENV POSTGIS_VERSION 3.4.1
12-
ENV POSTGIS_SHA256 473c09cbeb68c6e39c882c35e716994d2f8c1e614611162ef3d2a54716cbb74c
11+
ENV POSTGIS_VERSION 3.4.2
12+
ENV POSTGIS_SHA256 17aa8760a5c4fcb9a1fdc750c1c9aca0198a35dd1e320628064c43f178eefed2
1313

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

13-3.4/Dockerfile

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

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.4.1+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 13 bullseye" \
8+
org.opencontainers.image.description="PostGIS 3.4.2+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 13 bullseye" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

1111
ENV POSTGIS_MAJOR 3
12-
ENV POSTGIS_VERSION 3.4.1+dfsg-1.pgdg110+1
12+
ENV POSTGIS_VERSION 3.4.2+dfsg-1.pgdg110+1
1313

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

13-3.4/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.18
55
FROM ${BASE_IMAGE}
66

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

11-
ENV POSTGIS_VERSION 3.4.1
12-
ENV POSTGIS_SHA256 473c09cbeb68c6e39c882c35e716994d2f8c1e614611162ef3d2a54716cbb74c
11+
ENV POSTGIS_VERSION 3.4.2
12+
ENV POSTGIS_SHA256 17aa8760a5c4fcb9a1fdc750c1c9aca0198a35dd1e320628064c43f178eefed2
1313

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

14-3.4/Dockerfile

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

77
LABEL maintainer="PostGIS Project - https://postgis.net" \
8-
org.opencontainers.image.description="PostGIS 3.4.1+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 14 bullseye" \
8+
org.opencontainers.image.description="PostGIS 3.4.2+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 14 bullseye" \
99
org.opencontainers.image.source="https://github.com/postgis/docker-postgis"
1010

1111
ENV POSTGIS_MAJOR 3
12-
ENV POSTGIS_VERSION 3.4.1+dfsg-1.pgdg110+1
12+
ENV POSTGIS_VERSION 3.4.2+dfsg-1.pgdg110+1
1313

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

14-3.4/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.18
55
FROM ${BASE_IMAGE}
66

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

11-
ENV POSTGIS_VERSION 3.4.1
12-
ENV POSTGIS_SHA256 473c09cbeb68c6e39c882c35e716994d2f8c1e614611162ef3d2a54716cbb74c
11+
ENV POSTGIS_VERSION 3.4.2
12+
ENV POSTGIS_SHA256 17aa8760a5c4fcb9a1fdc750c1c9aca0198a35dd1e320628064c43f178eefed2
1313

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

0 commit comments

Comments
 (0)