Skip to content

Commit eceee22

Browse files
authored
Merge pull request #114 from citusdata/release-8.1.0-1545148925
Bump to version 8.1.0
2 parents 04d97ee + d362e9d commit eceee22

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
sudo: required
22
services: [ docker ]
33
script:
4-
- docker build -t citusdata/citus:8.0.2-1 .
4+
- docker build -t citusdata/citus:8.1.0-1 .

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### citus-docker v8.1.0.docker (December 18, 2018) ###
2+
3+
* Bump Citus version to 8.1.0
4+
15
### citus-docker v8.0.2.docker (December 13, 2018) ###
26

37
* Bump Citus version to 8.0.2

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM postgres:11
2-
ARG VERSION=8.0.2
2+
ARG VERSION=8.1.0
3+
34
LABEL maintainer="Citus Data https://citusdata.com" \
45
org.label-schema.name="Citus" \
56
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
@@ -17,7 +18,7 @@ RUN apt-get update \
1718
ca-certificates \
1819
curl \
1920
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
20-
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.0=$CITUS_VERSION \
21+
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.1=$CITUS_VERSION \
2122
postgresql-$PG_MAJOR-hll=2.12.citus-1 \
2223
postgresql-$PG_MAJOR-topn=2.2.0 \
2324
&& apt-get purge -y --auto-remove curl \

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:8.0.2'
6+
image: 'citusdata/citus:8.1.0'
77
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
88
labels: ['com.citusdata.role=Master']
99
worker:
10-
image: 'citusdata/citus:8.0.2'
10+
image: 'citusdata/citus:8.1.0'
1111
labels: ['com.citusdata.role=Worker']
1212
depends_on: { manager: { condition: service_healthy } }
1313
manager:

0 commit comments

Comments
 (0)