We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7924e89 + 407a407 commit 9967804Copy full SHA for 9967804
redis.yml
@@ -1,8 +1,9 @@
1
version: "3.0"
2
+# See Contribution Guidelines in README. Redis 7.2.4 is the last redis version before the Valkey fork.
3
services:
4
SingleNodeRedis:
5
restart: always
- image: redis:7.0.10
6
+ image: redis:${REDIS_VERSION:-7.2.4}
7
ports:
8
- "6379:6379"
9
environment:
@@ -11,7 +12,7 @@ services:
11
12
13
ReplicaNode:
14
15
16
17
- "6380:6379"
18
command: redis-server --replicaof SingleNodeRedis 6379
@@ -22,7 +23,7 @@ services:
22
23
24
RedisCluster:
25
- image: grokzen/redis-cluster:7.0.10
26
+ image: grokzen/redis-cluster:${REDIS_VERSION:-7.2.4}
27
28
- "30001:30001"
29
- "30002:30002"
0 commit comments