Skip to content

Commit

Permalink
Bump to version 9.3.4 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
onurctirtir authored Jul 22, 2020
1 parent 22a35cf commit 80d9a19
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### citus-docker v9.3.4.docker (July 22, 2020) ###

* Bump Citus version to 9.3.4

### citus-docker v9.3.0.docker (May 8, 2020) ###

* Bump Citus version to 9.3.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:12.2
ARG VERSION=9.3.0
ARG VERSION=9.3.4
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
2 changes: 1 addition & 1 deletion 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.0
ARG VERSION=9.3.4
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.0'
image: 'citusdata/citus:9.3.4'
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.0'
image: 'citusdata/citus:9.3.4'
labels: ['com.citusdata.role=Worker']
depends_on: [ manager ]
environment: *AUTH
Expand Down

0 comments on commit 80d9a19

Please sign in to comment.