Skip to content

Commit

Permalink
Bump docker to 8.0.0 and PG 11
Browse files Browse the repository at this point in the history
  • Loading branch information
velioglu committed Nov 3, 2018
1 parent d9117e2 commit 797697c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
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.docker (November 02, 2018) ###

* Bump Citus version to 8.0.0

* Bump PostgreSQL version to 11

### citus-docker v7.5.1.docker (August 29, 2018) ###

* Bump Citus version to 7.5.1
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:10.4
ARG VERSION=7.5.1
FROM postgres:11
ARG VERSION=8.0.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" \
Expand All @@ -17,9 +17,9 @@ 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-7.5=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.10.2.citus-1 \
postgresql-$PG_MAJOR-topn=2.0.2 \
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.0=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.12.citus-1 \
postgresql-$PG_MAJOR-topn=2.2.0 \
&& apt-get purge -y --auto-remove curl \
&& rm -rf /var/lib/apt/lists/*

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:7.5.1'
image: 'citusdata/citus:8.0.0'
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:7.5.1'
image: 'citusdata/citus:8.0.0'
labels: ['com.citusdata.role=Worker']
depends_on: { manager: { condition: service_healthy } }
manager:
Expand Down

0 comments on commit 797697c

Please sign in to comment.