Skip to content

Commit

Permalink
Merge pull request #194 from citusdata/release-9.4.0-1595951728
Browse files Browse the repository at this point in the history
Bump docker to 9.4.0
  • Loading branch information
onurctirtir authored Jul 28, 2020
2 parents 490cdd9 + 7b2ad17 commit 0fc710d
Show file tree
Hide file tree
Showing 4 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 v9.4.0.docker (July 28, 2020) ###

* Bump Citus version to 9.4.0

* Bump PostgreSQL version to 12.3

### citus-docker v9.3.5.docker (July 27, 2020) ###

* Bump Citus version to 9.3.5
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:12.2
ARG VERSION=9.3.5
FROM postgres:12.3
ARG VERSION=9.4.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,7 +17,7 @@ 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-9.3.=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-9.4.=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.14.citus-1 \
postgresql-$PG_MAJOR-topn=2.3.0 \
&& apt-get purge -y --auto-remove curl \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:12.2-alpine
ARG VERSION=9.3.5
FROM postgres:12.3-alpine
ARG VERSION=9.4.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 Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
master:
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
image: 'citusdata/citus:9.3.5'
image: 'citusdata/citus:9.4.0'
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
labels: ['com.citusdata.role=Master']
environment: &AUTH
Expand All @@ -13,7 +13,7 @@ services:
PGPASSWORD: "${POSTGRES_PASSWORD}"
POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}"
worker:
image: 'citusdata/citus:9.3.5'
image: 'citusdata/citus:9.4.0'
labels: ['com.citusdata.role=Worker']
depends_on: [ manager ]
environment: *AUTH
Expand Down

0 comments on commit 0fc710d

Please sign in to comment.