Skip to content

Commit

Permalink
try with eureka-server:0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aureamunoz committed Jul 17, 2024
1 parent cba9e18 commit 693d1d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class EurekaDiscoveryCDITest {
public static final int EUREKA_PORT = 8761;

@Container
public GenericContainer<?> eureka = new GenericContainer<>(DockerImageName.parse("quay.io/amunozhe/eureka-server:0.4"))
public GenericContainer<?> eureka = new GenericContainer<>(DockerImageName.parse("quay.io/amunozhe/eureka-server:0.2"))
.withExposedPorts(EUREKA_PORT);

private static Vertx vertx = Vertx.vertx();;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class EurekaDiscoveryTest {
private static final Logger log = LoggerFactory.getLogger(EurekaDiscoveryTest.class);

@Container
public GenericContainer<?> eureka = new GenericContainer<>(DockerImageName.parse("quay.io/amunozhe/eureka-server:0.4"))
public GenericContainer<?> eureka = new GenericContainer<>(DockerImageName.parse("quay.io/amunozhe/eureka-server:0.2"))
.withExposedPorts(EUREKA_PORT);

private static Vertx vertx = Vertx.vertx();
Expand Down

0 comments on commit 693d1d8

Please sign in to comment.