Skip to content

Commit

Permalink
Merge pull request #379 from jmartisk/issue-329-milvus
Browse files Browse the repository at this point in the history
Use the MilvusContainer from testcontainers
  • Loading branch information
geoand authored Mar 15, 2024
2 parents 5b336f9 + c16f72c commit 76e6113
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 253 deletions.
4 changes: 4 additions & 0 deletions milvus/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-devservices-deployment</artifactId>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>milvus</artifactId>
</dependency>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,9 @@ interface MilvusDevServicesBuildTimeConfig {
/**
* Container image for Milvus.
*/
@WithDefault("docker.io/milvusdb/milvus:v2.3.3")
@WithDefault("docker.io/milvusdb/milvus:v2.3.4")
String milvusImageName();

/**
* Container image for etcd.
*/
@WithDefault("quay.io/coreos/etcd:v3.5.5")
String etcdImageName();

/**
* Container image for minio.
*/
@WithDefault("docker.io/minio/minio:RELEASE.2023-12-13T23-28-55Z")
String minioImageName();

/**
* Optional fixed port the Milvus dev service will listen to.
* If not defined, the port will be chosen randomly.
Expand Down
Loading

0 comments on commit 76e6113

Please sign in to comment.