Skip to content

Commit

Permalink
Merge branch 'release-6.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed May 24, 2017
2 parents 01ae3db + 070dc32 commit a775d73
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### citus-docker v6.2.1 (May 24, 2017) ###

* Bump Citus version to 6.2.1

### citus-docker v6.1.1 (May 16, 2017) ###

* Bump Citus version to 6.1.0
* Bump Citus version to 6.1.1

* Based on latest PostgreSQL 9.6.3 image and official Citus 6.1.1 package

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM postgres:9.6.3
MAINTAINER Citus Data https://citusdata.com

ENV CITUS_VERSION 6.1.1.citus-1
ENV CITUS_VERSION 6.2.1.citus-1

# install Citus
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
&& apt-get install -y postgresql-$PG_MAJOR-citus-6.1=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-6.2=$CITUS_VERSION \
&& 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,12 +3,12 @@ version: '2'
services:
master:
container_name: 'citus_master'
image: 'citusdata/citus:6.1.1'
image: 'citusdata/citus:6.2.1'
ports: ['5432:5432']
labels: ['com.citusdata.role=Master']
volumes: ['/var/run/postgresql']
worker:
image: 'citusdata/citus:6.1.1'
image: 'citusdata/citus:6.2.1'
labels: ['com.citusdata.role=Worker']
config:
container_name: 'citus_config'
Expand Down

0 comments on commit a775d73

Please sign in to comment.