diff --git a/packages/modules/weaviate/src/weaviate-container.ts b/packages/modules/weaviate/src/weaviate-container.ts index a204cf139..bf2f69ede 100644 --- a/packages/modules/weaviate/src/weaviate-container.ts +++ b/packages/modules/weaviate/src/weaviate-container.ts @@ -4,7 +4,7 @@ const WEAVIATE_HTTP_PORT = 8080; const WEAVIATE_GRPC_PORT = 50051; export class WeaviateContainer extends GenericContainer { - constructor(image = "semitechnologies/weaviate:1.24.5") { + constructor(image = "semitechnologies/weaviate:1.29.0") { super(image); this.withCommand(["--host", "0.0.0.0", "--scheme", "http", "--port", `${WEAVIATE_HTTP_PORT}`]); this.withExposedPorts(WEAVIATE_HTTP_PORT, WEAVIATE_GRPC_PORT);