Skip to content

Commit

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

* 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 Jan 10, 2024
1 parent 9ad37e2 commit 30149b9
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.3-alpine'
image: 'redis:7.2.4-alpine'
ports:
- '127.0.0.1:6379:6379/tcp'
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TestUltimateRedisApplication {
@ServiceConnection(name = "redis")
GenericContainer<?> redisContainer(DynamicPropertyRegistry dynamicPropertyRegistry) {
GenericContainer redisContiner =
new GenericContainer<>(DockerImageName.parse("redis").withTag("7.2.3-alpine"))
new GenericContainer<>(DockerImageName.parse("redis").withTag("7.2.4-alpine"))
.withExposedPorts(6379);
dynamicPropertyRegistry.add("cache.redis-port", () -> redisContiner.getMappedPort(6379));
dynamicPropertyRegistry.add("cache.redis-host", redisContiner::getHost);
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.3-alpine
image: redis:7.2.4-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.3-alpine'
image: 'redis:7.2.4-alpine'
ports:
- '127.0.0.1:6379:6379/tcp'
volumes:
Expand Down

0 comments on commit 30149b9

Please sign in to comment.