diff --git a/CHANGELOG.md b/CHANGELOG.md index e68eba0..f290270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v11.1.2.docker (September 30,2022) ### + +* Bump Citus version to 11.1.2 + ### citus-docker v11.1.1.docker (September 16,2022) ### * Bump Citus version to 11.1.1 diff --git a/Dockerfile b/Dockerfile index e21c4fe..0baaa8f 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:14.5 -ARG VERSION=11.1.1 +ARG VERSION=11.1.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 813d109..ecb2457 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:14.5-alpine -ARG VERSION=11.1.1 +ARG VERSION=11.1.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 0f85bff..3f8c051 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:11.1.1" + image: "citusdata/citus:11.1.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:11.1.1" + image: "citusdata/citus:11.1.2" labels: ["com.citusdata.role=Worker"] depends_on: [manager] environment: *AUTH diff --git a/postgres-13/Dockerfile b/postgres-13/Dockerfile index 6e234cf..b9b553a 100644 --- a/postgres-13/Dockerfile +++ b/postgres-13/Dockerfile @@ -1,7 +1,7 @@ # This file is auto generated from it's template, # see citusdata/tools/packaging_automation/templates/docker/postgres-13/postgres-13.tmpl.dockerfile. FROM postgres:13.8 -ARG VERSION=11.1.1 +ARG VERSION=11.1.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-12/Dockerfile b/postgres-15/Dockerfile similarity index 82% rename from postgres-12/Dockerfile rename to postgres-15/Dockerfile index ef22266..95eab1e 100644 --- a/postgres-12/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-12/postgres-12.tmpl.dockerfile. -FROM postgres:12.12 -ARG VERSION=11.0.6 +# see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile. +FROM postgres:15beta4 +ARG VERSION=11.1.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" \ @@ -19,9 +19,9 @@ 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-11.0=$CITUS_VERSION \ - postgresql-$PG_MAJOR-hll=2.16.citus-1 \ - postgresql-$PG_MAJOR-topn=2.4.0 \ + && apt-get install -y postgresql-$PG_MAJOR-citus-11.1=$CITUS_VERSION \ + postgresql-$PG_MAJOR-hll=2.17.citus-1 \ + postgresql-$PG_MAJOR-topn=2.5.0.citus-1 \ && apt-get purge -y --auto-remove curl \ && rm -rf /var/lib/apt/lists/*