From 83faf83f559087f645202d9cb71f60873186aedb Mon Sep 17 00:00:00 2001 From: Gabriel Cerioni Date: Wed, 10 Dec 2025 12:02:11 -0300 Subject: [PATCH] Update Redis image to use latest redis 8 version This change updates the Redis service in docker-compose.yml to use the latest Redis 8 image instead of the previous Redis Stack image. The goal is to align the local development environment with the version of Redis that customers are running and simplify the demo setup. --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 10e21df..252db01 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -158,7 +158,7 @@ services: test: curl --write-out 'HTTP %{http_code}' --fail --silent --output /dev/null http://localhost:8082 redis: - image: redis/redis-stack-server + image: redis:latest hostname: redis container_name: redis ports: @@ -168,4 +168,4 @@ services: interval: 10s retries: 5 start_period: 5s - timeout: 5s \ No newline at end of file + timeout: 5s