Files
langchainjs/test-int-deps-docker-compose.yml
Nuno Campos 9977c96998 Fix weaviate integration tests, add to docker compose (#1625)
* Fix weaviate integration tests, add to docker compose

* Fix more int tests
2023-06-13 17:07:02 +01:00

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'