From e63d7ff49c64a6b0a9b9196e0c76321590cdce3c Mon Sep 17 00:00:00 2001 From: Hanefi Onaldi Date: Wed, 12 Jun 2019 17:22:50 +0300 Subject: [PATCH] Bump to version 8.2.2 --- .travis.yml | 2 +- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- docker-compose.yml | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ac16b2..9c2f5e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ sudo: required services: [ docker ] script: - - docker build -t citusdata/citus:8.2.1-1 . + - docker build -t citusdata/citus:8.2.2 . diff --git a/CHANGELOG.md b/CHANGELOG.md index c663d68..0c847fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v8.2.2.docker (June 12, 2019) ### + +* Bump Citus version to 8.2.2 + ### citus-docker v8.2.1.docker (April 4, 2019) ### * Bump Citus version to 8.2.1 diff --git a/Dockerfile b/Dockerfile index de4cd23..8046472 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM postgres:11 -ARG VERSION=8.2.1 +ARG VERSION=8.2.2 LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.name="Citus" \ org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \ diff --git a/docker-compose.yml b/docker-compose.yml index 27988c7..7d7fd05 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,11 +3,11 @@ version: '2.1' services: master: container_name: "${COMPOSE_PROJECT_NAME:-citus}_master" - image: 'citusdata/citus:8.2.1' + image: 'citusdata/citus:8.2.2' ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"] labels: ['com.citusdata.role=Master'] worker: - image: 'citusdata/citus:8.2.1' + image: 'citusdata/citus:8.2.2' labels: ['com.citusdata.role=Worker'] depends_on: { manager: { condition: service_healthy } } manager: