diff --git a/CHANGELOG.md b/CHANGELOG.md index d5ce80c..76067ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v13.0.2.docker (MArch 13,2025) ### + +* Bump Citus version to 13.0.2 + ### citus-docker v13.0.1.docker (February 05,2025) ### * Bump Citus version to 13.0.1 diff --git a/Dockerfile b/Dockerfile index 6ef513f..0981234 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.1 +ARG VERSION=13.0.2 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 704dafc..a267747 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.1 +ARG VERSION=13.0.2 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/docker-compose.yml b/docker-compose.yml index 46aa58d..059452e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ version: "3" services: master: container_name: "${COMPOSE_PROJECT_NAME:-citus}_master" - image: "citusdata/citus:13.0.1" + image: "citusdata/citus:13.0.2" ports: ["${COORDINATOR_EXTERNAL_PORT:-5432}:5432"] labels: ["com.citusdata.role=Master"] environment: &AUTH @@ -15,7 +15,7 @@ services: PGPASSWORD: "${POSTGRES_PASSWORD}" POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}" worker: - image: "citusdata/citus:13.0.1" + image: "citusdata/citus:13.0.2" labels: ["com.citusdata.role=Worker"] depends_on: [manager] environment: *AUTH diff --git a/postgres-15/Dockerfile b/postgres-15/Dockerfile index 14c23f5..f377fec 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.1 +ARG VERSION=13.0.2 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 e0cc6af..1674ae8 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.1 +ARG VERSION=13.0.2 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" \