Skip to content

Commit

Permalink
Update default redis version to 6.0.1 and make that release the lates…
Browse files Browse the repository at this point in the history
…t release
  • Loading branch information
Grokzen committed May 5, 2020
1 parent b95cac6 commit 94129b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ENV SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem

RUN gem install redis -v 4.1.3

ARG redis_version=5.0.7
ARG redis_version=6.0.1

RUN wget -qO redis.tar.gz https://github.com/antirez/redis/archive/${redis_version}.tar.gz \
&& tar xfz redis.tar.gz -C / \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ build-6.0:
docker build --build-arg redis_version=6.0.0 -t grokzen/redis-cluster:6.0.0 .

build-latest:
docker build --build-arg redis_version=5.0.7 -t grokzen/redis-cluster:latest .
docker build --build-arg redis_version=6.0.1 -t grokzen/redis-cluster:latest .

build-all: build-3.0 build-3.2 build-4.0 build-5.0 build-6.0 build-latest

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ The following tags with pre-built images is available on `docker-hub`.

Latest release in the most recent stable branch will be used as `latest` version.

- latest == 5.0.7
- latest == 6.0.1

Redis 6.0.x versions:

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
build:
context: .
args:
redis_version: '5.0.7'
redis_version: '6.0.1'
hostname: server
ports:
- '7000-7050:7000-7050'
Expand Down

0 comments on commit 94129b7

Please sign in to comment.