Skip to content

Commit c07019f

Browse files
authored
Bump docker to 8.3.0 (#132)
* Bump to version 8.3.0 * Update alpine docker image
1 parent e63d7ff commit c07019f

5 files changed

Lines changed: 17 additions & 9 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.2.2 .
4+
- docker build -t citusdata/citus:8.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 v8.3.0.docker (July 10, 2019) ###
2+
3+
* Bump Citus version to 8.3.0
4+
5+
* Bump PostgreSQL version to 11.4
6+
17
### citus-docker v8.2.2.docker (June 12, 2019) ###
28

39
* Bump Citus version to 8.2.2

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM postgres:11
2-
ARG VERSION=8.2.2
1+
FROM postgres:11.4
2+
ARG VERSION=8.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-8.2=$CITUS_VERSION \
20+
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.3=$CITUS_VERSION \
2121
postgresql-$PG_MAJOR-hll=2.12.citus-1 \
2222
postgresql-$PG_MAJOR-topn=2.2.0 \
2323
&& apt-get purge -y --auto-remove curl \

Dockerfile-alpine

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM postgres:10.1-alpine
2-
ARG VERSION=7.1.0
1+
FROM postgres:11.4-alpine
2+
ARG VERSION=8.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" \
@@ -14,7 +14,9 @@ RUN apk add --no-cache \
1414
build-base \
1515
curl \
1616
curl-dev \
17-
openssl-dev && \
17+
openssl-dev \
18+
ca-certificates \
19+
icu-dev && \
1820
apk add --no-cache libcurl && \
1921
curl -sfLO "https://github.com/citusdata/citus/archive/v${VERSION}.tar.gz" && \
2022
tar xzf "v${VERSION}.tar.gz" && \

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

0 commit comments

Comments
 (0)