Skip to content

Commit

Permalink
Bump docker to version 12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gurkanindibay committed Jul 17, 2023
1 parent 7b86406 commit 139962e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### citus-docker v12.0.0.docker (July 17,2023) ###

* Bump Citus version to 12.0.0

### citus-docker v11.3.0.docker (May 02,2023) ###

* Bump Citus version to 11.3.0
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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:15.3
ARG VERSION=11.3.0
FROM postgres:15.2
ARG VERSION=12.0.0
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" \
Expand All @@ -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.3=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-12.0=$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 \
Expand Down
5 changes: 2 additions & 3 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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:15.2-alpine
ARG VERSION=11.3.0
ARG VERSION=12.0.0
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" \
Expand All @@ -20,9 +20,8 @@ RUN apk add --no-cache \
curl-dev \
openssl-dev \
ca-certificates \
clang \
llvm \
llvm15-dev \
clang15 \
lz4-dev \
zstd-dev \
libxslt-dev \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: "3"
services:
master:
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
image: "citusdata/citus:11.3.0"
image: "citusdata/citus:12.0.0"
ports: ["${COORDINATOR_EXTERNAL_PORT:-5432}:5432"]
labels: ["com.citusdata.role=Master"]
environment: &AUTH
Expand All @@ -15,7 +15,7 @@ services:
PGPASSWORD: "${POSTGRES_PASSWORD}"
POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}"
worker:
image: "citusdata/citus:11.3.0"
image: "citusdata/citus:12.0.0"
labels: ["com.citusdata.role=Worker"]
depends_on: [manager]
environment: *AUTH
Expand Down
6 changes: 3 additions & 3 deletions postgres-13/Dockerfile
Original file line number Diff line number Diff line change
@@ -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.11
ARG VERSION=11.3.0
FROM postgres:13.10
ARG VERSION=12.0.0
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" \
Expand All @@ -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.3=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-12.0=$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 \
Expand Down
6 changes: 3 additions & 3 deletions postgres-14/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is auto generated from it's template,
# see citusdata/tools/packaging_automation/templates/docker/postgres-14/postgres-14.tmpl.dockerfile.
FROM postgres:14.8
ARG VERSION=11.3.0
FROM postgres:14.7
ARG VERSION=12.0.0
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" \
Expand All @@ -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.3=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-12.0=$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 \
Expand Down

0 comments on commit 139962e

Please sign in to comment.