diff --git a/.travis.yml b/.travis.yml index 70d0033..55f8aeb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ sudo: required services: [ docker ] script: - - docker build -t citusdata/citus:7.4.0-2 . + - docker build -t citusdata/citus:7.4.1 . diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bcfda6..a51fc5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v7.4.1.docker (June 20, 2018) ### + +* Bump Citus version to 7.4.1 + ### citus-docker v7.4.0-2.docker (Jun 1, 2018) ### * Add postgresql-topn to docker image diff --git a/Dockerfile b/Dockerfile index ab14af6..6d6d238 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM postgres:10.3 -ARG VERSION=7.4.0-1 +ARG VERSION=7.4.1 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" \ @@ -9,11 +9,7 @@ LABEL maintainer="Citus Data https://citusdata.com" \ org.label-schema.version=${VERSION} \ org.label-schema.schema-version="1.0" -# we released 7.4.0-1 versio for docker image to add postgresql-hll -# however, citus itself does not have 7.4.0-1 version so we are -# hardcoding version number here. In the future we should change -# hardcoded part to use $VERSION instead -ENV CITUS_VERSION 7.4.0.citus-1 +ENV CITUS_VERSION ${VERSION}.citus-1 # install Citus RUN apt-get update \ diff --git a/docker-compose.yml b/docker-compose.yml index 291ece3..e304b3c 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:7.4.0-2' + image: 'citusdata/citus:7.4.1' ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"] labels: ['com.citusdata.role=Master'] worker: - image: 'citusdata/citus:7.4.0-2' + image: 'citusdata/citus:7.4.1' labels: ['com.citusdata.role=Worker'] depends_on: { manager: { condition: service_healthy } } manager: