From c7b419c737c56a83c5a802062d9b9e8d414a631d Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Fri, 30 May 2025 20:03:30 +0300 Subject: [PATCH 1/3] Bump docker version to 12.1.8 --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- alpine/Dockerfile | 2 +- postgres-15/Dockerfile | 2 +- postgres-16/Dockerfile | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f6f980..1eae57a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v12.1.8.docker (May 30,2025) ### + +* Bump Citus version to 12.1.8 + ### citus-docker v13.0.3.docker (March 22,2025) ### * Bump Citus version to 13.0.3 diff --git a/Dockerfile b/Dockerfile index cf4361d..84d7929 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile. FROM postgres:17.2 -ARG VERSION=13.0.3 +ARG VERSION=12.1.8 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \ org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \ diff --git a/alpine/Dockerfile b/alpine/Dockerfile index b170f4d..d4ac422 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,7 +1,7 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/alpine/alpine.tmpl.dockerfile. FROM postgres:17.2-alpine -ARG VERSION=13.0.3 +ARG VERSION=12.1.8 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \ org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \ diff --git a/postgres-15/Dockerfile b/postgres-15/Dockerfile index 54977dc..1f37e90 100644 --- a/postgres-15/Dockerfile +++ b/postgres-15/Dockerfile @@ -1,7 +1,7 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/postgres-15/postgres-15.tmpl.dockerfile. FROM postgres:15.10 -ARG VERSION=13.0.3 +ARG VERSION=12.1.8 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \ org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \ diff --git a/postgres-16/Dockerfile b/postgres-16/Dockerfile index 08425cf..ac0485f 100644 --- a/postgres-16/Dockerfile +++ b/postgres-16/Dockerfile @@ -1,7 +1,7 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/postgres-16/postgres-16.tmpl.dockerfile. FROM postgres:16.6 -ARG VERSION=13.0.3 +ARG VERSION=12.1.8 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \ org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \ From e68fb9cb12be719a89946785a91ea04af4358aa8 Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Fri, 30 May 2025 20:10:06 +0300 Subject: [PATCH 2/3] Bump Citus version to 12.1 in PostgreSQL Dockerfiles --- Dockerfile | 2 +- postgres-15/Dockerfile | 2 +- postgres-16/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 84d7929..1c0c5c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update \ ca-certificates \ curl \ && curl -s https://install.citusdata.com/community/deb.sh | bash \ - && apt-get install -y postgresql-$PG_MAJOR-citus-13.0=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-12.1=$CITUS_VERSION \ postgresql-$PG_MAJOR-hll=2.18.citus-1 \ postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \ && apt-get purge -y --auto-remove curl \ diff --git a/postgres-15/Dockerfile b/postgres-15/Dockerfile index 1f37e90..84a643d 100644 --- a/postgres-15/Dockerfile +++ b/postgres-15/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update \ ca-certificates \ curl \ && curl -s https://install.citusdata.com/community/deb.sh | bash \ - && apt-get install -y postgresql-$PG_MAJOR-citus-13.0=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-12.1=$CITUS_VERSION \ postgresql-$PG_MAJOR-hll=2.18.citus-1 \ postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \ && apt-get purge -y --auto-remove curl \ diff --git a/postgres-16/Dockerfile b/postgres-16/Dockerfile index ac0485f..8efc6ad 100644 --- a/postgres-16/Dockerfile +++ b/postgres-16/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update \ ca-certificates \ curl \ && curl -s https://install.citusdata.com/community/deb.sh | bash \ - && apt-get install -y postgresql-$PG_MAJOR-citus-13.0=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-12.1=$CITUS_VERSION \ postgresql-$PG_MAJOR-hll=2.18.citus-1 \ postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \ && apt-get purge -y --auto-remove curl \ From 4a37593839a53b94bbc774e20a390f408a7e1637 Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Fri, 30 May 2025 20:29:11 +0300 Subject: [PATCH 3/3] Bump PostgreSQL version to 16.6 in Dockerfiles --- Dockerfile | 2 +- alpine/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c0c5c1..d716eb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile. -FROM postgres:17.2 +FROM postgres:16.6 ARG VERSION=12.1.8 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \ diff --git a/alpine/Dockerfile b/alpine/Dockerfile index d4ac422..fd8114c 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,6 +1,6 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/alpine/alpine.tmpl.dockerfile. -FROM postgres:17.2-alpine +FROM postgres:16.6-alpine ARG VERSION=12.1.8 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \