This commit is contained in:
Lorenzo Carbonell 2024-04-16 05:24:47 +02:00
parent b0bd85dcd8
commit 729ed73c49
No known key found for this signature in database
GPG Key ID: B5E8FC9484B82CA9
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
---
version: '3.7'
services:
weaviate:
container_name: weaviate
image: semitechnologies/weaviate:1.23.0
init: true
command:
- --host
- 0.0.0.0
- --port
- '8080'
- --scheme
- http
ports:
- 8080:8080
- 50051:50051
volumes:
- weaviate_data:/var/lib/weaviate
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: 'none'
ENABLE_MODULES: 'text2vec-cohere,text2vec-huggingface,text2vec-palm,text2vec-openai,generative-openai,generative-cohere,generative-palm,ref2vec-centroid,reranker-cohere,qna-openai'
CLUSTER_HOSTNAME: 'node1'
volumes:
weaviate_data: