Skip to content

Commit

Permalink
Update redis image to use latest patch and not a hardcoded patch
Browse files Browse the repository at this point in the history
Current latest patch is 6.2.14
  • Loading branch information
froque committed Apr 29, 2024
1 parent f7ce9db commit ab5faa4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion contrib/docker-swarm/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.4'
services:
redis:
restart: always
image: redis:6.2.6
image: redis:6.2
command:
- --loglevel warning
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.swarm.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.4'
services:
redis:
image: redis:6.2.6
image: redis:6.2
command:
- --loglevel warning
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2.3'
services:
redis:
restart: always
image: redis:6.2.6
image: redis:6.2
command:
- --loglevel warning
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/docker-compose-keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:
redis:
restart: always
image: redis:6.2.6
image: redis:6.2
command:
- --loglevel warning
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/docker-compose-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:
redis:
restart: always
image: redis:6.2.6
image: redis:6.2
command:
- --loglevel warning
volumes:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/redis-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: redis
image: redis:6.2.6
image: redis:6.2
ports:
- name: redis
containerPort: 6379
Expand Down

0 comments on commit ab5faa4

Please sign in to comment.