Skip to content

Commit 987b702

Browse files
author
Gürkan İndibay
authored
Bump docker to version 11.1.2 (#320)
* Bump docker to version 11.1.2
1 parent ac9a38c commit 987b702

6 files changed

Lines changed: 15 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### citus-docker v11.1.2.docker (September 30,2022) ###
2+
3+
* Bump Citus version to 11.1.2
4+
15
### citus-docker v11.1.1.docker (September 16,2022) ###
26

37
* Bump Citus version to 11.1.1

Dockerfile

Lines changed: 1 addition & 1 deletion
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.
33
FROM postgres:14.5
4-
ARG VERSION=11.1.1
4+
ARG VERSION=11.1.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" \

alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
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.
33
FROM postgres:14.5-alpine
4-
ARG VERSION=11.1.1
4+
ARG VERSION=11.1.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" \

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.1.1"
8+
image: "citusdata/citus:11.1.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.1.1"
18+
image: "citusdata/citus:11.1.2"
1919
labels: ["com.citusdata.role=Worker"]
2020
depends_on: [manager]
2121
environment: *AUTH

postgres-13/Dockerfile

Lines changed: 1 addition & 1 deletion
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.
33
FROM postgres:13.8
4-
ARG VERSION=11.1.1
4+
ARG VERSION=11.1.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" \
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
2-
# see citusdata/tools/packaging_automation/templates/docker/postgres-12/postgres-12.tmpl.dockerfile.
3-
FROM postgres:12.12
4-
ARG VERSION=11.0.6
2+
# see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile.
3+
FROM postgres:15beta4
4+
ARG VERSION=11.1.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,9 +19,9 @@ 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-11.0=$CITUS_VERSION \
23-
postgresql-$PG_MAJOR-hll=2.16.citus-1 \
24-
postgresql-$PG_MAJOR-topn=2.4.0 \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-11.1=$CITUS_VERSION \
23+
postgresql-$PG_MAJOR-hll=2.17.citus-1 \
24+
postgresql-$PG_MAJOR-topn=2.5.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \
2626
&& rm -rf /var/lib/apt/lists/*
2727

0 commit comments

Comments
 (0)