Skip to content

Commit ac7ec7c

Browse files
committed
Merge branch 'postgres-16-release' into 'master'
Add PostgresSQL 16 (release) See merge request postgres-ai/custom-images!60
2 parents 3fcafd6 + 1f8d5cb commit ac7ec7c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Available PostgreSQL versions: 9.6 (EOL), 10 (EOL), 11, 12, 13, 14, 15, 16. Exte
3939
The PostgreSQL 16 image is now missing the following extensions (they will be added in the future):
4040
- pg_show_plans
4141
- pg_auth_mon
42-
- pg_hint_plan
4342
- timescaledb
4443
- citus
4544
- powa

extended-postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/partial \
8383
# pgaudit extension
8484
&& apt-get install --no-install-recommends -y postgresql-${PG_SERVER_VERSION}-pgaudit \
8585
# pg_hint_plan extension
86-
&& if [ $(echo "$PG_SERVER_VERSION < 16" | /usr/bin/bc) = "1" ]; then \
86+
&& if [ $(echo "$PG_SERVER_VERSION < 17" | /usr/bin/bc) = "1" ]; then \
8787
export PG_PLAN_HINT_VERSION=$(echo $PG_SERVER_VERSION | sed 's/\.//') \
8888
&& wget --quiet -O /tmp/pg_hint_plan.zip \
8989
https://github.com/ossc-db/pg_hint_plan/archive/PG${PG_PLAN_HINT_VERSION}.zip \

extended-postgres/build-images-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ build-extended-postgres-16-image-latest:
107107
<<: *only_tag_release
108108
variables:
109109
<<: *extended_image_vars_dh
110-
PG_SERVER_VERSION: "16rc1"
110+
PG_SERVER_VERSION: "16"
111111
TAGS: "${DOCKER_NAME}:${PG_SERVER_VERSION},${DOCKER_NAME}:${PG_SERVER_VERSION}-${CI_COMMIT_TAG}"
112112

113113
build-extended-postgres-9-6-image-feature:
@@ -171,5 +171,5 @@ build-extended-postgres-16-image-feature:
171171
<<: *only_feature
172172
variables:
173173
<<: *extended_image_vars_gl
174-
PG_SERVER_VERSION: "16rc1"
174+
PG_SERVER_VERSION: "16"
175175
TAGS: "${DOCKER_NAME}:${PG_SERVER_VERSION},${DOCKER_NAME}:${PG_SERVER_VERSION}-${CI_COMMIT_REF_SLUG}"

0 commit comments

Comments
 (0)