Skip to content

Commit 7280d0a

Browse files
authored
Merge pull request #104 from citusdata/release-v8.0.0_2
Release 8.0.0 and Update PG to 11
2 parents 8f51384 + 797697c commit 7280d0a

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### citus-docker v8.0.0.docker (November 02, 2018) ###
2+
3+
* Bump Citus version to 8.0.0
4+
5+
* Bump PostgreSQL version to 11
6+
17
### citus-docker v7.5.1.docker (August 29, 2018) ###
28

39
* Bump Citus version to 7.5.1

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM postgres:10.4
2-
ARG VERSION=7.5.1
1+
FROM postgres:11
2+
ARG VERSION=8.0.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,9 @@ 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-7.5=$CITUS_VERSION \
21-
postgresql-$PG_MAJOR-hll=2.10.2.citus-1 \
22-
postgresql-$PG_MAJOR-topn=2.0.2 \
20+
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.0=$CITUS_VERSION \
21+
postgresql-$PG_MAJOR-hll=2.12.citus-1 \
22+
postgresql-$PG_MAJOR-topn=2.2.0 \
2323
&& apt-get purge -y --auto-remove curl \
2424
&& rm -rf /var/lib/apt/lists/*
2525

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ version: '2.1'
33
services:
44
master:
55
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
6-
image: 'citusdata/citus:7.5.1'
6+
image: 'citusdata/citus:8.0.0'
77
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
88
labels: ['com.citusdata.role=Master']
99
worker:
10-
image: 'citusdata/citus:7.5.1'
10+
image: 'citusdata/citus:8.0.0'
1111
labels: ['com.citusdata.role=Worker']
1212
depends_on: { manager: { condition: service_healthy } }
1313
manager:

0 commit comments

Comments
 (0)