Skip to content

Commit 215130f

Browse files
authored
Merge pull request #379 from citusdata/ihalatci-investigate-missing-citus-14-1-image
Bump docker to version 14.1.0 (PostgreSQL 18.4)
2 parents 28bb181 + 75bc0c2 commit 215130f

7 files changed

Lines changed: 20 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### citus-docker v14.1.0.docker (June 22,2026) ###
2+
3+
* Bump Citus version to 14.1.0
4+
* Bump PostgreSQL 18 base image to 18.4
5+
* Bump alpine build toolchain to clang21/llvm21 to match the 18.4-alpine base
6+
17
### citus-docker v14.0.0.docker (February 11,2026) ###
28

39
* Bump Citus version to 14.0.0

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile.
3-
FROM postgres:18.1
4-
ARG VERSION=14.0.0
3+
FROM postgres:18.4
4+
ARG VERSION=14.1.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -20,7 +20,7 @@ RUN apt-get update \
2020
ca-certificates=* \
2121
curl=* \
2222
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
23-
&& apt-get install -y --no-install-recommends "postgresql-$PG_MAJOR-citus-14.0=$CITUS_VERSION" \
23+
&& apt-get install -y --no-install-recommends "postgresql-$PG_MAJOR-citus-14.1=$CITUS_VERSION" \
2424
"postgresql-$PG_MAJOR-hll=2.19.citus-1" \
2525
"postgresql-$PG_MAJOR-topn=2.7.0.citus-1" \
2626
&& apt-get purge -y --auto-remove curl \

alpine/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/alpine/alpine.tmpl.dockerfile.
3-
FROM postgres:18.1-alpine
4-
ARG VERSION=14.0.0
3+
FROM postgres:18.4-alpine
4+
ARG VERSION=14.1.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -20,8 +20,8 @@ RUN apk add --no-cache \
2020
curl-dev \
2121
openssl-dev \
2222
ca-certificates \
23-
clang19 \
24-
llvm19 \
23+
clang21 \
24+
llvm21 \
2525
lz4-dev \
2626
zstd-dev \
2727
libxslt-dev \

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: "3"
55
services:
66
master:
77
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
8-
image: "citusdata/citus:14.0.0"
8+
image: "citusdata/citus:14.1.0"
99
ports: ["${COORDINATOR_EXTERNAL_PORT:-5432}:5432"]
1010
labels: ["com.citusdata.role=Master"]
1111
environment: &AUTH
@@ -15,7 +15,7 @@ services:
1515
PGPASSWORD: "${POSTGRES_PASSWORD}"
1616
POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}"
1717
worker:
18-
image: "citusdata/citus:14.0.0"
18+
image: "citusdata/citus:14.1.0"
1919
labels: ["com.citusdata.role=Worker"]
2020
depends_on: [manager]
2121
environment: *AUTH

pkgvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
postgres_18_version=18.1
1+
postgres_18_version=18.4
22
postgres_17_version=17.6
33
postgres_16_version=16.10
44

postgres-16/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-16/postgres-16.tmpl.dockerfile.
33
FROM postgres:16.10
4-
ARG VERSION=14.0.0
4+
ARG VERSION=14.1.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-14.0=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-14.1=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.19.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \

postgres-17/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-17/postgres-17.tmpl.dockerfile.
33
FROM postgres:17.6
4-
ARG VERSION=14.0.0
4+
ARG VERSION=14.1.0
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-14.0=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-14.1=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.19.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.7.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \

0 commit comments

Comments
 (0)