Skip to content

Commit 01ae3db

Browse files
committed
Merge branch 'release-6.1.1'
2 parents e1fd056 + e4b9bec commit 01ae3db

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### citus-docker v6.1.1 (May 16, 2017) ###
2+
3+
* Bump Citus version to 6.1.0
4+
5+
* Based on latest PostgreSQL 9.6.3 image and official Citus 6.1.1 package
6+
17
### citus-docker v6.1.0 (February 10, 2017) ###
28

39
* Bump Citus version to 6.1.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM postgres:9.6.2
1+
FROM postgres:9.6.3
22
MAINTAINER Citus Data https://citusdata.com
33

4-
ENV CITUS_VERSION 6.1.0.citus-1
4+
ENV CITUS_VERSION 6.1.1.citus-1
55

66
# install Citus
77
RUN apt-get update \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Citus is a PostgreSQL-based distributed RDBMS. For more information, see the [Ci
88

99
## Function
1010

11-
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`).
11+
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`).
1212

1313
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).
1414

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ version: '2'
33
services:
44
master:
55
container_name: 'citus_master'
6-
image: 'citusdata/citus:6.1.0'
6+
image: 'citusdata/citus:6.1.1'
77
ports: ['5432:5432']
88
labels: ['com.citusdata.role=Master']
99
volumes: ['/var/run/postgresql']
1010
worker:
11-
image: 'citusdata/citus:6.1.0'
11+
image: 'citusdata/citus:6.1.1'
1212
labels: ['com.citusdata.role=Worker']
1313
config:
1414
container_name: 'citus_config'

nightly/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ RUN apt-key del 1530DF18 \
99
ca-certificates \
1010
curl \
1111
&& curl -s https://install.citusdata.com/community-nightlies/deb.sh | bash \
12-
&& apt-get install --only-upgrade -y postgresql-$PG_MAJOR-citus \
12+
&& apt-get install -y postgresql-$PG_MAJOR-citus \
1313
&& apt-get purge -y --auto-remove curl \
1414
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)