Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
onurctirtir committed Mar 6, 2020
2 parents 7fd9ed4 + 2e4d917 commit 07d3a38
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ env:
- DOCKERFILE=Dockerfile
- DOCKERFILE=Dockerfile-alpine
script:
- docker build -f "$DOCKERFILE" -t citusdata/citus:9.2.1 .
- docker build -f "$DOCKERFILE" -t citusdata/citus:9.2.2 .
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.2.2.docker (March 6, 2020) ###

* Bump Citus version to 9.2.2

* Bump PostgreSQL version to 12.2

### citus-docker v9.2.1.docker (February 14, 2020) ###

* Bump Citus version to 9.2.1
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:12.1
ARG VERSION=9.2.1
FROM postgres:12.2
ARG VERSION=9.2.2
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 Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:12.1-alpine
ARG VERSION=9.2.1
FROM postgres:12.2-alpine
ARG VERSION=9.2.2
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,11 +3,11 @@ version: '2.1'
services:
master:
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
image: 'citusdata/citus:9.2.1'
image: 'citusdata/citus:9.2.2'
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:9.2.1'
image: 'citusdata/citus:9.2.2'
labels: ['com.citusdata.role=Worker']
depends_on: { manager: { condition: service_healthy } }
manager:
Expand Down

0 comments on commit 07d3a38

Please sign in to comment.