Skip to content

Commit cf15543

Browse files
author
Gürkan İndibay
authored
Bump docker to version 11.0.2 (#300)
* Bump docker to version 11.0.2 * Bump postgres versions into latest * Adds additional dependencises for pg_send_cancellation in alpine
1 parent 4fa2418 commit cf15543

6 files changed

Lines changed: 20 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### citus-docker v11.0.2.docker (June 16,2022) ###
2+
3+
* Bump Citus version to 11.0.2
4+
5+
* Bump PostgreSQL version to 14.3 and 13.7
6+
17
### citus-docker v11.0.1_beta.docker (April 11,2022) ###
28

39
* Bump Citus version to 11.0.1_beta

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile.
3-
FROM postgres:14.2
4-
ARG VERSION=11.0.1-beta
3+
FROM postgres:14.3
4+
ARG VERSION=11.0.2
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-beta-11.0=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-11.0=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.16.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.4.0 \
2525
&& apt-get purge -y --auto-remove curl \

alpine/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/alpine/alpine.tmpl.dockerfile.
3-
FROM postgres:14.2-alpine
4-
ARG VERSION=11.0.1_beta
3+
FROM postgres:14.3-alpine
4+
ARG VERSION=11.0.2
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -24,6 +24,8 @@ RUN apk add --no-cache \
2424
llvm \
2525
lz4-dev \
2626
zstd-dev \
27+
libxslt-dev \
28+
libxml2-dev \
2729
icu-dev && \
2830
apk add --no-cache libcurl && \
2931
curl -sfLO "https://github.com/citusdata/citus/archive/v${VERSION}.tar.gz" && \

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: "3"
55
services:
66
master:
77
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
8-
image: "citusdata/citus:11.0.1-beta"
8+
image: "citusdata/citus:11.0.2"
99
ports: ["${COORDINATOR_EXTERNAL_PORT:-5432}:5432"]
1010
labels: ["com.citusdata.role=Master"]
1111
environment: &AUTH
@@ -15,7 +15,7 @@ services:
1515
PGPASSWORD: "${POSTGRES_PASSWORD}"
1616
POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}"
1717
worker:
18-
image: "citusdata/citus:11.0.1-beta"
18+
image: "citusdata/citus:11.0.2"
1919
labels: ["com.citusdata.role=Worker"]
2020
depends_on: [manager]
2121
environment: *AUTH

postgres-12/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-12/postgres-12.tmpl.dockerfile.
33
FROM postgres:12.10
4-
ARG VERSION=11.0.1-beta
4+
ARG VERSION=11.0.2
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-beta-11.0=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-11.0=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.16.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.4.0 \
2525
&& apt-get purge -y --auto-remove curl \

postgres-13/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-13/postgres-13.tmpl.dockerfile.
3-
FROM postgres:13.6
4-
ARG VERSION=11.0.1-beta
3+
FROM postgres:13.7
4+
ARG VERSION=11.0.2
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-beta-11.0=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-11.0=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.16.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.4.0 \
2525
&& apt-get purge -y --auto-remove curl \

0 commit comments

Comments
 (0)