Skip to content

Commit

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

* Update ContainersConfig.java

* Update TestcontainersConfiguration.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 7, 2025
1 parent 0e4b8ce commit 4f859e5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion boot-ultimate-redis/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
redis:
image: 'redis:7.4.1-alpine'
image: 'redis:7.4.2-alpine'
container_name: redis-server
ports:
- '6379:6379'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ DynamicPropertyRegistrar dynamicPropertyRegistrar(RedisClusterContainer redisClu
@ServiceConnection("redis")
@Profile(AppConstants.PROFILE_NOT_CLUSTER)
RedisContainer redisContainer() {
return new RedisContainer(DockerImageName.parse("redis").withTag("7.4.1-alpine"));
return new RedisContainer(DockerImageName.parse("redis").withTag("7.4.2-alpine"));
}
}
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.4.1-alpine
image: redis:7.4.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.4.1-alpine'
image: 'redis:7.4.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 @@ -22,7 +22,7 @@ PostgreSQLContainer<?> postgreSQLContainer() {
@Bean
RedisContainer redisContainer() throws IOException {
RedisContainer redisContainer =
new RedisContainer(DockerImageName.parse("redis").withTag("7.4.1-alpine"));
new RedisContainer(DockerImageName.parse("redis").withTag("7.4.2-alpine"));
redisContainer.start();
String ymlContent = """
singleServerConfig:
Expand Down

0 comments on commit 4f859e5

Please sign in to comment.