Skip to content

Commit

Permalink
Bump docker to version 12.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gurkanindibay committed Nov 26, 2024
1 parent 4ea8a14 commit 8692119
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.1.6.docker (November 26,2024) ###

* Bump Citus version to 12.1.6

### citus-docker v12.1.5.docker (July 18,2024) ###

* Bump Citus version to 12.1.5
Expand Down
8 changes: 4 additions & 4 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:16.3
ARG VERSION=12.1.5
FROM postgres:16.2
ARG VERSION=12.1.6
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,8 +20,8 @@ RUN apt-get update \
curl \
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
&& apt-get install -y postgresql-$PG_MAJOR-citus-12.1=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.18.citus-1 \
postgresql-$PG_MAJOR-topn=2.6.0.citus-1 \
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/*

Expand Down
7 changes: 3 additions & 4 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:16.3-alpine
ARG VERSION=12.1.5
FROM postgres:16.2-alpine
ARG VERSION=12.1.6
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:12.1.5"
image: "citusdata/citus:12.1.6"
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:12.1.5"
image: "citusdata/citus:12.1.6"
labels: ["com.citusdata.role=Worker"]
depends_on: [manager]
environment: *AUTH
Expand Down
4 changes: 2 additions & 2 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.12
ARG VERSION=12.1.5
FROM postgres:14.11
ARG VERSION=12.1.6
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 Down
4 changes: 2 additions & 2 deletions postgres-15/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-15/postgres-15.tmpl.dockerfile.
FROM postgres:15.7
ARG VERSION=12.1.5
FROM postgres:15.6
ARG VERSION=12.1.6
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 Down

0 comments on commit 8692119

Please sign in to comment.