diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea5446..e68eba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v11.1.1.docker (September 16,2022) ### + +* Bump Citus version to 11.1.1 + ### citus-docker v11.0.6.docker (August 19,2022) ### * Bump Citus version to 11.0.6 diff --git a/Dockerfile b/Dockerfile index 38aa8fe..e21c4fe 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.0.6 +ARG VERSION=11.1.1 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,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-11.0=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-11.1=$CITUS_VERSION \ postgresql-$PG_MAJOR-hll=2.16.citus-1 \ postgresql-$PG_MAJOR-topn=2.4.0 \ && apt-get purge -y --auto-remove curl \ diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 35479fa..813d109 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.0.6 +ARG VERSION=11.1.1 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 bd1b47a..0f85bff 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.0.6" + image: "citusdata/citus:11.1.1" 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.0.6" + image: "citusdata/citus:11.1.1" labels: ["com.citusdata.role=Worker"] depends_on: [manager] environment: *AUTH diff --git a/postgres-13/Dockerfile b/postgres-13/Dockerfile index 849e3a6..6e234cf 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.0.6 +ARG VERSION=11.1.1 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,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-11.0=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-11.1=$CITUS_VERSION \ postgresql-$PG_MAJOR-hll=2.16.citus-1 \ postgresql-$PG_MAJOR-topn=2.4.0 \ && apt-get purge -y --auto-remove curl \