Skip to content

Commit 63253bd

Browse files
authored
Merge pull request #73 from citusdata/release-7.3.0-1521126205
Bump docker to 7.3.0
2 parents 5ba1ed3 + e63dc00 commit 63253bd

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.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:7.2.1 .
4+
- docker build -t citusdata/citus:7.3.0 .

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### citus-docker v7.3.0.docker (March 15, 2018) ###
2+
3+
* Bump Citus version to 7.3.0
4+
5+
* Bump PostgreSQL version to 10.3
6+
17
### citus-docker v7.2.1.docker (February 6, 2018) ###
28

39
* Bump Citus version to 7.2.1

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM postgres:10.1
2-
ARG VERSION=7.2.1
1+
FROM postgres:10.3
2+
ARG VERSION=7.3.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-7.2=$CITUS_VERSION \
20+
&& apt-get install -y postgresql-$PG_MAJOR-citus-7.3=$CITUS_VERSION \
2121
&& apt-get purge -y --auto-remove curl \
2222
&& rm -rf /var/lib/apt/lists/*
2323

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

0 commit comments

Comments
 (0)