Skip to content

Commit e8c6c11

Browse files
authored
Merge pull request #201 from citusdata/release-9.5.0-1605172832
Bump docker to 9.5.0
2 parents ac30818 + c5f01bd commit e8c6c11

4 files changed

Lines changed: 15 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### citus-docker v9.5.0.docker (November 12, 2020) ###
2+
3+
* Bump Citus version to 9.5.0
4+
5+
* Bump PostgreSQL version to 13.0
6+
7+
* Do not include hll & topn as they don't have pg13 packages yet
8+
19
### citus-docker v9.4.2.docker (October 22, 2020) ###
210

311
* Bump Citus version to 9.4.2

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM postgres:12.3
2-
ARG VERSION=9.4.2
1+
FROM postgres:13.0
2+
ARG VERSION=9.5.0
33
LABEL maintainer="Citus Data https://citusdata.com" \
44
org.label-schema.name="Citus" \
55
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -17,9 +17,7 @@ RUN apt-get update \
1717
ca-certificates \
1818
curl \
1919
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
20-
&& apt-get install -y postgresql-$PG_MAJOR-citus-9.4.=$CITUS_VERSION \
21-
postgresql-$PG_MAJOR-hll=2.14.citus-1 \
22-
postgresql-$PG_MAJOR-topn=2.3.0 \
20+
&& apt-get install -y postgresql-$PG_MAJOR-citus-9.5.=$CITUS_VERSION \
2321
&& apt-get purge -y --auto-remove curl \
2422
&& rm -rf /var/lib/apt/lists/*
2523

Dockerfile-alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM postgres:12.3-alpine
2-
ARG VERSION=9.4.2
1+
FROM postgres:13.0-alpine
2+
ARG VERSION=9.5.0
33
LABEL maintainer="Citus Data https://citusdata.com" \
44
org.label-schema.name="Citus" \
55
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
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
master:
55
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
6-
image: 'citusdata/citus:9.4.2'
6+
image: 'citusdata/citus:9.5.0'
77
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
88
labels: ['com.citusdata.role=Master']
99
environment: &AUTH
@@ -13,7 +13,7 @@ services:
1313
PGPASSWORD: "${POSTGRES_PASSWORD}"
1414
POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}"
1515
worker:
16-
image: 'citusdata/citus:9.4.2'
16+
image: 'citusdata/citus:9.5.0'
1717
labels: ['com.citusdata.role=Worker']
1818
depends_on: [ manager ]
1919
environment: *AUTH

0 commit comments

Comments
 (0)