Skip to content

Commit 3cca695

Browse files
authored
refactor: Prepare for Postgres 18 (#42)
* refactor: Prepare for Postgres 18 * Update Dockerfile.pgpool * Update release.yml * Update release-pgpool.yml * Update Dockerfile * Update Dockerfile.pgpool
1 parent 52cc13d commit 3cca695

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/release-pgpool.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
schedule:
55
- cron: '19 3 * * *'
66
push:
7-
branches: [ main, 15-3.3, 17-3.5 ]
7+
branches: [ main, 15-3.3, 18-3.6 ]
88

99
env:
10-
LATEST: '17-3.5'
10+
LATEST: '18-3.6'
1111
REGISTRY: docker.io
1212
IMAGE_NAME: ${{ github.repository }}
1313

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
schedule:
55
- cron: '19 3 * * *'
66
push:
7-
branches: [ main, 15-3.3, 17-3.5 ]
7+
branches: [ main, 15-3.3, 18-3.6 ]
88

99
env:
10-
LATEST: '17-3.5'
10+
LATEST: '18-3.6'
1111
REGISTRY: docker.io
1212
IMAGE_NAME: ${{ github.repository }}
1313

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM postgres:17-bullseye
1+
FROM postgres:18-trixie
22

33
LABEL maintainer="HIPAA Postgres w/ PostGIS Project" \
4-
org.opencontainers.image.description="PostGIS 3.5.2+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 17 bullseye" \
4+
org.opencontainers.image.description="PostGIS 3.6.0+dfsg-1.pgdg13+1 spatial database extension with PostgreSQL 18 trixie" \
55
org.opencontainers.image.source="https://github.com/netreconlab/hipaa-postgres/"
66

77
ENV POSTGIS_MAJOR=3
8-
ENV POSTGIS_VERSION=3.5.2+dfsg-1.pgdg110+1
8+
ENV POSTGIS_VERSION=3.6.0+dfsg-1.pgdg13+1
99
ENV POSTGRES_INITDB_ARGS="--data-checksums"
1010

1111
RUN apt-get update \

Dockerfile.pgpool

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM postgres:17-bullseye
1+
FROM postgres:18-trixie
22

33
LABEL maintainer="HIPAA Postgres w/ PostGIS Project" \
4-
org.opencontainers.image.description="PostGIS 3.5.2+dfsg-1.pgdg110+1 spatial database extension and PGPool with PostgreSQL 17 bullseye" \
4+
org.opencontainers.image.description="PostGIS 3.5.2+dfsg-1.pgdg110+1 spatial database extension and PGPool with PostgreSQL 18 trixie" \
55
org.opencontainers.image.source="https://github.com/netreconlab/hipaa-postgres/"
66

77
ENV POSTGIS_MAJOR=3
8-
ENV POSTGIS_VERSION=3.5.2+dfsg-1.pgdg110+1
8+
ENV POSTGIS_VERSION=3.6.0+dfsg-1.pgdg13+1
99
ENV POSTGRES_INITDB_ARGS="--data-checksums"
1010

1111
RUN apt-get update \

0 commit comments

Comments
 (0)