Skip to content

Commit

Permalink
Merge pull request #4 from infobip/jvrlic/change-rabbit-default-image…
Browse files Browse the repository at this point in the history
…-version

Changed rabbitmq default image version: 3.8.9
  • Loading branch information
jvrlic committed Feb 17, 2021
2 parents e4e5618 + 758be27 commit 9b3fe21
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public void initialize(ConfigurableApplicationContext configurableApplicationCon
environment.getProperty("testcontainers.rabbit.docker.image"))
.map(RabbitContainerWrapper::new)
.orElseGet(
() -> new RabbitContainerWrapper("rabbitmq:3.6.14-alpine"));
() -> new RabbitContainerWrapper("rabbitmq:3.8.9-alpine"));

start(container);
container.waitingFor(Wait.forListeningPort());
start(container);

TestPropertyValues values = TestPropertyValues.of(
String.format("spring.rabbitmq.addresses=%s:%d", container.getContainerIpAddress(),
Expand Down

0 comments on commit 9b3fe21

Please sign in to comment.