Skip to content

Commit

Permalink
Merge branch 'release-6.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed May 17, 2017
2 parents e1fd056 + e4b9bec commit 01ae3db
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 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 v6.1.1 (May 16, 2017) ###

* Bump Citus version to 6.1.0

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

### citus-docker v6.1.0 (February 10, 2017) ###

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

ENV CITUS_VERSION 6.1.0.citus-1
ENV CITUS_VERSION 6.1.1.citus-1

# install Citus
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Citus is a PostgreSQL-based distributed RDBMS. For more information, see the [Ci

## Function

This image provides a single running Citus instance (atop PostgreSQL 9.5), using standard configuration values. It is based on [the official PostgreSQL image][docker-postgres], so be sure to consult that image’s documentation for advanced configuration options (including non-default settings for e.g. `PGDATA` or `POSTGRES_USER`).
This image provides a single running Citus instance (atop PostgreSQL 9.6), using standard configuration values. It is based on [the official PostgreSQL image][docker-postgres], so be sure to consult that image’s documentation for advanced configuration options (including non-default settings for e.g. `PGDATA` or `POSTGRES_USER`).

Just like the standard PostgreSQL image, this image exposes port `5432`. In other words, all containers on the same Docker network should be able to connect on this port, and exposing it externally will permit connections from external clients (`psql`, adapters, applications).

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.0'
image: 'citusdata/citus:6.1.1'
ports: ['5432:5432']
labels: ['com.citusdata.role=Master']
volumes: ['/var/run/postgresql']
worker:
image: 'citusdata/citus:6.1.0'
image: 'citusdata/citus:6.1.1'
labels: ['com.citusdata.role=Worker']
config:
container_name: 'citus_config'
Expand Down
2 changes: 1 addition & 1 deletion nightly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ RUN apt-key del 1530DF18 \
ca-certificates \
curl \
&& curl -s https://install.citusdata.com/community-nightlies/deb.sh | bash \
&& apt-get install --only-upgrade -y postgresql-$PG_MAJOR-citus \
&& apt-get install -y postgresql-$PG_MAJOR-citus \
&& apt-get purge -y --auto-remove curl \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 01ae3db

Please sign in to comment.