Skip to content

Commit

Permalink
fix : merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Nov 15, 2024
1 parent 67fabc1 commit 56de7e3
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ GenericContainer<?> zipkinContainer() {

@Bean
@ServiceConnection(name = "redis")
GenericContainer<?> redisContainer() {
return new GenericContainer<>(DockerImageName.parse("redis").withTag("7.4.0-alpine"))
.withExposedPorts(6379)
RedisContainer redisContainer() {
return new RedisContainer(DockerImageName.parse("redis").withTag("7.4.0-alpine"))
.withReuse(true);
}

Expand Down

0 comments on commit 56de7e3

Please sign in to comment.