From 243f9fa9572a04c9ce48efab17720e44e84033da Mon Sep 17 00:00:00 2001 From: Burak Yucesoy Date: Tue, 29 Aug 2017 16:42:28 +0300 Subject: [PATCH] Bump Citus to 7.0.0 --- CHANGELOG.md | 6 ++++++ Dockerfile | 6 +++--- docker-compose.yml | 4 ++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d94723..1253b29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### citus-docker v7.0.0 (Aug 29, 2017) ### + +* Bump Citus version to 7.0.0 + +* Based on latest PostgreSQL 9.6.4 image and official Citus 7.0.0 package + ### citus-docker v6.2.3 (Jul 14, 2017) ### * Bump Citus version to 6.2.3 diff --git a/Dockerfile b/Dockerfile index f749941..bbd430d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM postgres:9.6.3 +FROM postgres:9.6.4 MAINTAINER Citus Data https://citusdata.com -ENV CITUS_VERSION 6.2.3.citus-1 +ENV CITUS_VERSION 7.0.0.citus-1 # install Citus RUN apt-get update \ @@ -9,7 +9,7 @@ RUN apt-get update \ ca-certificates \ curl \ && curl -s https://install.citusdata.com/community/deb.sh | bash \ - && apt-get install -y postgresql-$PG_MAJOR-citus-6.2=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-7.0=$CITUS_VERSION \ && apt-get purge -y --auto-remove curl \ && rm -rf /var/lib/apt/lists/* diff --git a/docker-compose.yml b/docker-compose.yml index 5feffcd..2090b89 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,12 +3,12 @@ version: '2' services: master: container_name: 'citus_master' - image: 'citusdata/citus:6.2.3' + image: 'citusdata/citus:7.0.0' ports: ['5432:5432'] labels: ['com.citusdata.role=Master'] volumes: ['/var/run/postgresql'] worker: - image: 'citusdata/citus:6.2.3' + image: 'citusdata/citus:7.0.0' labels: ['com.citusdata.role=Worker'] config: container_name: 'citus_config'