Skip to content

Commit 9967804

Browse files
authored
Merge pull request #971 from profunktor/latest-redis-version-until-valkey
Set last redis version in tests
2 parents 7924e89 + 407a407 commit 9967804

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

redis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
version: "3.0"
2+
# See Contribution Guidelines in README. Redis 7.2.4 is the last redis version before the Valkey fork.
23
services:
34
SingleNodeRedis:
45
restart: always
5-
image: redis:7.0.10
6+
image: redis:${REDIS_VERSION:-7.2.4}
67
ports:
78
- "6379:6379"
89
environment:
@@ -11,7 +12,7 @@ services:
1112

1213
ReplicaNode:
1314
restart: always
14-
image: redis:7.0.10
15+
image: redis:${REDIS_VERSION:-7.2.4}
1516
ports:
1617
- "6380:6379"
1718
command: redis-server --replicaof SingleNodeRedis 6379
@@ -22,7 +23,7 @@ services:
2223

2324
RedisCluster:
2425
restart: always
25-
image: grokzen/redis-cluster:7.0.10
26+
image: grokzen/redis-cluster:${REDIS_VERSION:-7.2.4}
2627
ports:
2728
- "30001:30001"
2829
- "30002:30002"

0 commit comments

Comments
 (0)