Skip to content

Commit

Permalink
Merge pull request #108 from citusdata/develop-8.0.0-1-master
Browse files Browse the repository at this point in the history
Bump image to 8.0.0-1
  • Loading branch information
velioglu authored Nov 5, 2018
2 parents 7280d0a + 86e444c commit 2597c3c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: required
services: [ docker ]
script:
- docker build -t citusdata/citus:7.5.1 .
- docker build -t citusdata/citus:8.0.0-1 .
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### citus-docker v8.0.0-1.docker (November 05, 2018) ###

* Bump Citus version to 8.0.0-1

* Update postgresql-hll packages

### citus-docker v8.0.0.docker (November 02, 2018) ###

* Bump Citus version to 8.0.0
Expand Down
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:11
ARG VERSION=8.0.0
ARG VERSION=8.0.0-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" \
Expand All @@ -9,7 +9,11 @@ LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.version=${VERSION} \
org.label-schema.schema-version="1.0"

ENV CITUS_VERSION ${VERSION}.citus-1
# we released 8.0.0-1 version for docker image to update postgresql-hll
# however, citus itself does not have 8.0.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 8.0.0.citus-1

# install Citus
RUN apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version: '2.1'
services:
master:
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
image: 'citusdata/citus:8.0.0'
image: 'citusdata/citus:8.0.0-1'
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:8.0.0'
image: 'citusdata/citus:8.0.0-1'
labels: ['com.citusdata.role=Worker']
depends_on: { manager: { condition: service_healthy } }
manager:
Expand Down

0 comments on commit 2597c3c

Please sign in to comment.