diff --git a/.travis.yml b/.travis.yml index 9043b36..d9e4518 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ sudo: required services: [ docker ] script: - - docker build -t citusdata/citus:8.0.2-1 . + - docker build -t citusdata/citus:8.1.0-1 . diff --git a/CHANGELOG.md b/CHANGELOG.md index 4135cb5..9f6913d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citus-docker v8.1.0.docker (December 18, 2018) ### + +* Bump Citus version to 8.1.0 + ### citus-docker v8.0.2.docker (December 13, 2018) ### * Bump Citus version to 8.0.2 diff --git a/Dockerfile b/Dockerfile index 19adc27..2e02e01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM postgres:11 -ARG VERSION=8.0.2 +ARG VERSION=8.1.0 + 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" \ @@ -17,7 +18,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-8.0=$CITUS_VERSION \ + && apt-get install -y postgresql-$PG_MAJOR-citus-8.1=$CITUS_VERSION \ postgresql-$PG_MAJOR-hll=2.12.citus-1 \ postgresql-$PG_MAJOR-topn=2.2.0 \ && apt-get purge -y --auto-remove curl \ diff --git a/docker-compose.yml b/docker-compose.yml index 39346c0..09c694e 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.0.2' + image: 'citusdata/citus:8.1.0' ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"] labels: ['com.citusdata.role=Master'] worker: - image: 'citusdata/citus:8.0.2' + image: 'citusdata/citus:8.1.0' labels: ['com.citusdata.role=Worker'] depends_on: { manager: { condition: service_healthy } } manager: