Skip to content

Commit

Permalink
Updated redis version to represent latest available build (#3296)
Browse files Browse the repository at this point in the history
* Updated version of redis-stack docker image

* Updated docker-compose with new versions

* Updated versions to latest

* Updated redis version to represent latest available build

* Rever stunnel version
  • Loading branch information
vladvildanov committed Jun 26, 2024
1 parent a0660a6 commit d2084e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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

0 comments on commit d2084e3

Please sign in to comment.