File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11sudo : required
22services : [ docker ]
33script :
4- - docker build -t citusdata/citus:8.0.0 -1 .
4+ - docker build -t citusdata/citus:8.0.2 -1 .
Original file line number Diff line number Diff line change 1+ ### citus-docker v8.0.2.docker (December 13, 2018) ###
2+
3+ * Bump Citus version to 8.0.2
4+
15### citus-docker v8.0.0-1.docker (November 05, 2018) ###
26
37* Bump Citus version to 8.0.0-1
Original file line number Diff line number Diff line change 11FROM postgres:11
2- ARG VERSION=8.0.0-1
2+ ARG VERSION=8.0.2
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" \
@@ -9,11 +9,7 @@ LABEL maintainer="Citus Data https://citusdata.com" \
99 org.label-schema.version=${VERSION} \
1010 org.label-schema.schema-version="1.0"
1111
12- # we released 8.0.0-1 version for docker image to update postgresql-hll
13- # however, citus itself does not have 8.0.0-1 version so we are
14- # hardcoding version number here. In the future we should change
15- # hardcoded part to use $VERSION instead
16- ENV CITUS_VERSION 8.0.0.citus-1
12+ ENV CITUS_VERSION ${VERSION}.citus-1
1713
1814# install Citus
1915RUN apt-get update \
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:8.0.0 '
6+ image : ' citusdata/citus:8.0.2 '
77 ports : ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
88 labels : ['com.citusdata.role=Master']
99 worker :
10- image : ' citusdata/citus:8.0.0 '
10+ image : ' citusdata/citus:8.0.2 '
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