Skip to content

Commit

Permalink
Bump docker to 8.3.0 (#132)
Browse files Browse the repository at this point in the history
* Bump to version 8.3.0
* Update alpine docker image
  • Loading branch information
hanefi authored Jul 11, 2019
1 parent e63d7ff commit c07019f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: required
services: [ docker ]
script:
- docker build -t citusdata/citus:8.2.2 .
- docker build -t citusdata/citus:8.3.0 .
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### citus-docker v8.3.0.docker (July 10, 2019) ###

* Bump Citus version to 8.3.0

* Bump PostgreSQL version to 11.4

### citus-docker v8.2.2.docker (June 12, 2019) ###

* Bump Citus version to 8.2.2
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:11
ARG VERSION=8.2.2
FROM postgres:11.4
ARG VERSION=8.3.0
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
Expand All @@ -17,7 +17,7 @@ RUN apt-get update \
ca-certificates \
curl \
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.2=$CITUS_VERSION \
&& apt-get install -y postgresql-$PG_MAJOR-citus-8.3=$CITUS_VERSION \
postgresql-$PG_MAJOR-hll=2.12.citus-1 \
postgresql-$PG_MAJOR-topn=2.2.0 \
&& apt-get purge -y --auto-remove curl \
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:10.1-alpine
ARG VERSION=7.1.0
FROM postgres:11.4-alpine
ARG VERSION=8.3.0
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
Expand All @@ -14,7 +14,9 @@ RUN apk add --no-cache \
build-base \
curl \
curl-dev \
openssl-dev && \
openssl-dev \
ca-certificates \
icu-dev && \
apk add --no-cache libcurl && \
curl -sfLO "https://github.com/citusdata/citus/archive/v${VERSION}.tar.gz" && \
tar xzf "v${VERSION}.tar.gz" && \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version: '2.1'
services:
master:
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
image: 'citusdata/citus:8.2.2'
image: 'citusdata/citus:8.3.0'
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:8.2.2'
image: 'citusdata/citus:8.3.0'
labels: ['com.citusdata.role=Worker']
depends_on: { manager: { condition: service_healthy } }
manager:
Expand Down

0 comments on commit c07019f

Please sign in to comment.