Pinecone
Testcontainers module for Pinecone.
PineconeContainer's usage examples
You can start an Pinecone container instance from any Java application by using:
PineconeContainer container = new PineconeContainer("ghcr.io/pinecone-io/pinecone-local:v0.7.0")
Adding this module to your project dependencies
Add the following dependency to your pom.xml
/build.gradle
file:
testImplementation "org.testcontainers:pinecone:1.20.4"
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>pinecone</artifactId>
<version>1.20.4</version>
<scope>test</scope>
</dependency>