mirror of
https://github.com/Mintplex-Labs/langchainjs.git
synced 2026-07-01 12:17:38 -04:00
9977c96998
* Fix weaviate integration tests, add to docker compose * Fix more int tests
20 lines
502 B
YAML
20 lines
502 B
YAML
version: '3.8'
|
|
services:
|
|
redis:
|
|
image: redis:6.2-alpine
|
|
restart: always
|
|
ports:
|
|
- '6379:6379'
|
|
command: redis-server --save 20 1 --loglevel warning
|
|
weaviate:
|
|
image: semitechnologies/weaviate:1.19.7
|
|
ports:
|
|
- 8080:8080
|
|
restart: on-failure:0
|
|
environment:
|
|
QUERY_DEFAULTS_LIMIT: 25
|
|
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
|
|
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
|
|
DEFAULT_VECTORIZER_MODULE: 'none'
|
|
CLUSTER_HOSTNAME: 'node1'
|