Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/conformance/redis/docker-compose.cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# docker compose -f test/conformance/redis/docker-compose.cluster.yml down -v

x-redis-node: &redis-node
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
network_mode: host
restart: unless-stopped

Expand Down Expand Up @@ -82,7 +82,7 @@ services:
retries: 15

cluster-init:
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
network_mode: host
container_name: celeris-cluster-init
depends_on:
Expand Down
10 changes: 5 additions & 5 deletions test/conformance/redis/docker-compose.sentinel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
# Linux-only; both our local Multipass VM and ubuntu-latest CI
# runners are Linux, so this is fine for the conformance suite.
redis-master:
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
container_name: celeris-sentinel-master
network_mode: host
command:
Expand All @@ -43,7 +43,7 @@ services:
retries: 10

redis-replica:
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
container_name: celeris-sentinel-replica
network_mode: host
depends_on:
Expand All @@ -70,7 +70,7 @@ services:
# Three sentinels configured with quorum=2. Each writes a minimal
# config at startup pointing at 127.0.0.1:6379 as master.
sentinel-1:
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
container_name: celeris-sentinel-1
network_mode: host
depends_on:
Expand All @@ -90,7 +90,7 @@ services:
exec redis-sentinel /etc/sentinel.conf

sentinel-2:
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
container_name: celeris-sentinel-2
network_mode: host
depends_on:
Expand All @@ -110,7 +110,7 @@ services:
exec redis-sentinel /etc/sentinel.conf

sentinel-3:
image: ${REDIS_IMAGE:-redis:8.8}
image: ${REDIS_IMAGE:-redis:8.10}
container_name: celeris-sentinel-3
network_mode: host
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion test/conformance/redis/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

services:
redis:
image: redis:8.8
image: redis:8.10
container_name: celeris-redis-conformance
ports:
- "6379:6379"
Expand Down