Skip to content

Commit

Permalink
chore(deps): update redis docker tag to v7.2.2 (#920)
Browse files Browse the repository at this point in the history
* chore(deps): update redis docker tag to v7.2.2

* Update TestUltimateRedisApplication.java

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raja Kolli <[email protected]>
  • Loading branch information
renovate[bot] and rajadilipkolli authored Oct 19, 2023
1 parent 739ae50 commit 3f3b31d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion boot-ultimate-redis/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
redis:
image: 'redis:7.2.1-alpine'
image: 'redis:7.2.2-alpine'
ports:
- '127.0.0.1:6379:6379/tcp'
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TestUltimateRedisApplication {
@Bean
@ServiceConnection(name = "redis")
GenericContainer<?> redisContainer() {
return new GenericContainer<>(DockerImageName.parse("redis").withTag("7.2.1-alpine"))
return new GenericContainer<>(DockerImageName.parse("redis").withTag("7.2.2-alpine"))
.withExposedPorts(6379);
}

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
- PGADMIN_DEFAULT_PASSWORD=admin

redis:
image: redis:7.2.1-alpine
image: redis:7.2.2-alpine
ports:
- "6379:6379"
command: redis-server --save 60 1 --requirepass MDNcVb924a --loglevel warning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- "5432:5432"

redis:
image: 'redis:7.2.1-alpine'
image: 'redis:7.2.2-alpine'
ports:
- '127.0.0.1:6379:6379/tcp'
volumes:
Expand Down

0 comments on commit 3f3b31d

Please sign in to comment.