Skip to content

Commit

Permalink
Update redis Docker tag to v7
Browse files Browse the repository at this point in the history
| datasource | package | from | to |
| ---------- | ------- | ---- | -- |
| docker     | redis   | 3    | 7  |


Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 16, 2024
1 parent 376044d commit 45468f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions redis-demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ nginxplus:
- "8080:8080"

redis-master:
image: redis:3
image: redis:7
container_name: redis-master
ports:
- "63791:6379"

redis-slave1:
image: redis:3
image: redis:7
command: redis-server --slaveof redis-master 6379
container_name: redis-slave1
links:
Expand All @@ -21,7 +21,7 @@ redis-slave1:
- "63792:6379"

redis-slave2:
image: redis:3
image: redis:7
command: redis-server --slaveof redis-master 6379
container_name: redis-slave2
links:
Expand Down
2 changes: 1 addition & 1 deletion redis-demo/sentinel/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM redis:3
FROM redis:7

MAINTAINER Kunal Pariani <[email protected]>

Expand Down

0 comments on commit 45468f0

Please sign in to comment.