File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 11sudo : required
22services : [ docker ]
33script :
4- - docker build -t citusdata/citus:7.4.1 .
4+ - docker build -t citusdata/citus:7.5.0 .
Original file line number Diff line number Diff line change 1+ ### citus-docker v7.5.0.docker (July 25, 2018) ###
2+
3+ * Bump Citus version to 7.5.0
4+
5+ * Bump PostgreSQL version to 10.4
6+
17### citus-docker v7.4.1.docker (June 20, 2018) ###
28
39* Bump Citus version to 7.4.1
Original file line number Diff line number Diff line change 1- FROM postgres:10.3
2- ARG VERSION=7.4.1
1+ FROM postgres:10.4
2+ ARG VERSION=7.5.0
33LABEL 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.4 =$CITUS_VERSION \
20+ && apt-get install -y postgresql-$PG_MAJOR-citus-7.5 =$CITUS_VERSION \
2121 postgresql-$PG_MAJOR-hll=2.10.2.citus-1 \
2222 postgresql-$PG_MAJOR-topn=2.0.2 \
2323 && apt-get purge -y --auto-remove curl \
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ version: '2.1'
33services :
44 master :
55 container_name : " ${COMPOSE_PROJECT_NAME:-citus}_master"
6- image : ' citusdata/citus:7.4.1 '
6+ image : ' citusdata/citus:7.5.0 '
77 ports : ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
88 labels : ['com.citusdata.role=Master']
99 worker :
10- image : ' citusdata/citus:7.4.1 '
10+ image : ' citusdata/citus:7.5.0 '
1111 labels : ['com.citusdata.role=Worker']
1212 depends_on : { manager: { condition: service_healthy } }
1313 manager :
You can’t perform that action at this time.
0 commit comments