Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated redis version to represent latest available build #3296

Merged
merged 6 commits into from
Jun 26, 2024
Merged
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
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: "3.8"
services:

redis:
image: redis/redis-stack-server:latest
image: redis/redis-stack-server:7.2.0-v11
container_name: redis-standalone
ports:
- 6379:6379
Expand All @@ -18,7 +18,7 @@ services:
- all

replica:
image: redis/redis-stack-server:latest
image: redis/redis-stack-server:7.2.0-v11
container_name: redis-replica
depends_on:
- redis
Expand Down Expand Up @@ -63,7 +63,7 @@ services:
- "./dockers/stunnel/keys:/etc/stunnel/keys:ro"

sentinel:
image: redis/redis-stack-server:latest
image: redis/redis-stack-server:7.2.0-v11
container_name: redis-sentinel
depends_on:
- redis
Expand All @@ -79,7 +79,7 @@ services:
- all

sentinel2:
image: redis/redis-stack-server:latest
image: redis/redis-stack-server:7.2.0-v11
container_name: redis-sentinel2
depends_on:
- redis
Expand All @@ -95,7 +95,7 @@ services:
- all

sentinel3:
image: redis/redis-stack-server:latest
image: redis/redis-stack-server:7.2.0-v11
container_name: redis-sentinel3
depends_on:
- redis
Expand Down
2 changes: 1 addition & 1 deletion dockers/Dockerfile.cluster
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM redis/redis-stack-server:latest as rss
FROM redis/redis-stack-server:7.2.0-v11 as rss

COPY dockers/create_cluster.sh /create_cluster.sh
RUN ls -R /opt/redis-stack
Expand Down
Loading