Skip to content

Commit

Permalink
fix e2e starup test
Browse files Browse the repository at this point in the history
  • Loading branch information
arcade-player committed Sep 2, 2024
1 parent b6640b3 commit c4c8adc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ public abstract class ArcadeContainerTemplate {

static {
ARCADE = new GenericContainer("arcadedata/arcadedb:latest")
.withExposedPorts(2480, 6379, 5432, 8182)//
.withExposedPorts(2480, 6379, 5432, 8182)
.withStartupTimeout(Duration.ofSeconds(90))
.withEnv("JAVA_OPTS", "-Darcadedb.server.rootPassword=playwithdata "
+ "-Darcadedb.server.defaultDatabases=beer[root]{import:https://github.com/ArcadeData/arcadedb-datasets/raw/main/orientdb/OpenBeer.gz} "
+ "-Darcadedb.server.plugins=Postgres:com.arcadedb.postgres.PostgresProtocolPlugin,GremlinServer:com.arcadedb.server.gremlin.GremlinServerPlugin")
.waitingFor(Wait.forHttp("/api/v1/ready").forStatusCode(204));
.waitingFor(Wait.forHttp("/api/v1/ready").forPort(2480).forStatusCode(204));
ARCADE.start();
}

Expand Down

0 comments on commit c4c8adc

Please sign in to comment.