Skip to content

Commit 94129b7

Browse files
committed
Update default redis version to 6.0.1 and make that release the latest release
1 parent b95cac6 commit 94129b7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ENV SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem
2323

2424
RUN gem install redis -v 4.1.3
2525

26-
ARG redis_version=5.0.7
26+
ARG redis_version=6.0.1
2727

2828
RUN wget -qO redis.tar.gz https://github.com/antirez/redis/archive/${redis_version}.tar.gz \
2929
&& tar xfz redis.tar.gz -C / \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ build-6.0:
111111
docker build --build-arg redis_version=6.0.0 -t grokzen/redis-cluster:6.0.0 .
112112

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ The following tags with pre-built images is available on `docker-hub`.
169169

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

172-
- latest == 5.0.7
172+
- latest == 6.0.1
173173

174174
Redis 6.0.x versions:
175175

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
build:
99
context: .
1010
args:
11-
redis_version: '5.0.7'
11+
redis_version: '6.0.1'
1212
hostname: server
1313
ports:
1414
- '7000-7050:7000-7050'

0 commit comments

Comments
 (0)