Pinecone
Testcontainers module for Pinecone Local.
PineconeLocalContainer's usage examples
You can start a Pinecone container instance from any Java application by using:
PineconeLocalContainer container = new PineconeLocalContainer("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:testcontainers-pinecone:2.0.1"
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-pinecone</artifactId>
<version>2.0.1</version>
<scope>test</scope>
</dependency>