Skip to content

Commit 95f1ff9

Browse files
authored
Bump to version 9.2.0 (#159)
1 parent 8e183bf commit 95f1ff9

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ env:
44
- DOCKERFILE=Dockerfile
55
- DOCKERFILE=Dockerfile-alpine
66
script:
7-
- docker build -f "$DOCKERFILE" -t citusdata/citus:9.1.1 .
7+
- docker build -f "$DOCKERFILE" -t citusdata/citus:9.2.0 .

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### citus-docker v9.2.0.docker (February 10, 2020) ###
2+
3+
* Bump Citus version to 9.2.0
4+
15
### citus-docker v9.1.1.docker (December 19, 2019) ###
26

37
* Bump Citus version to 9.1.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM postgres:12.1
2-
ARG VERSION=9.1.1
2+
ARG VERSION=9.2.0
33
LABEL maintainer="Citus Data https://citusdata.com" \
44
org.label-schema.name="Citus" \
55
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -17,7 +17,7 @@ RUN apt-get update \
1717
ca-certificates \
1818
curl \
1919
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
20-
&& apt-get install -y postgresql-$PG_MAJOR-citus-9.1.=$CITUS_VERSION \
20+
&& apt-get install -y postgresql-$PG_MAJOR-citus-9.2.=$CITUS_VERSION \
2121
postgresql-$PG_MAJOR-hll=2.14.citus-1 \
2222
postgresql-$PG_MAJOR-topn=2.3.0 \
2323
&& apt-get purge -y --auto-remove curl \

Dockerfile-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM postgres:12.1-alpine
2-
ARG VERSION=9.1.1
2+
ARG VERSION=9.2.0
33
LABEL maintainer="Citus Data https://citusdata.com" \
44
org.label-schema.name="Citus" \
55
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ version: '2.1'
33
services:
44
master:
55
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
6-
image: 'citusdata/citus:9.1.1'
6+
image: 'citusdata/citus:9.2.0'
77
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
88
labels: ['com.citusdata.role=Master']
99
worker:
10-
image: 'citusdata/citus:9.1.1'
10+
image: 'citusdata/citus:9.2.0'
1111
labels: ['com.citusdata.role=Worker']
1212
depends_on: { manager: { condition: service_healthy } }
1313
manager:

0 commit comments

Comments
 (0)