Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 856 Bytes

File metadata and controls

30 lines (22 loc) · 856 Bytes

Pinecone

Testcontainers module for Pinecone Local.

PineconeLocalContainer's usage examples

You can start a Pinecone container instance from any Java application by using:

Pinecone container inside_block:container

Adding this module to your project dependencies

Add the following dependency to your pom.xml/build.gradle file:

=== "Gradle"

testImplementation "org.testcontainers:pinecone:{{latest_version}}"

=== "Maven"

<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>pinecone</artifactId>
    <version>{{latest_version}}</version>
    <scope>test</scope>
</dependency>