Skip to content

Commit

Permalink
Update topn, hll, PG versions
Browse files Browse the repository at this point in the history
(cherry picked from commit bb6bc51)
  • Loading branch information
hanefi committed Nov 22, 2019
1 parent 4b10642 commit d0d734a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

* Bump Citus version to 9.0.1

### citus-docker v.0.1.docker (November 7, 2019) ###

* Bump Citus version to .0.1

### citus-docker v8.3.2.docker (August 9, 2019) ###

* Bump Citus version to 8.3.2
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:11.4
FROM postgres:12.1
ARG VERSION=9.0.1
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
Expand All @@ -18,8 +18,8 @@ RUN apt-get update \
curl \
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
&& apt-get install -y postgresql-$PG_MAJOR-citus-9.0.=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.12.citus-1 \
postgresql-$PG_MAJOR-topn=2.2.0 \
postgresql-$PG_MAJOR-hll=2.14.citus-1 \
postgresql-$PG_MAJOR-topn=2.3.0 \
&& apt-get purge -y --auto-remove curl \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:11.4-alpine
FROM postgres:12.1-alpine
ARG VERSION=9.0.1
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
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.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`).
This image provides a single running Citus instance (atop PostgreSQL 12.0), 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

0 comments on commit d0d734a

Please sign in to comment.