-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
I've found that Docker-compose.yml for Weaviate docker's missing (0 line).
Broken link: https://github.com/weaviate/BookRecs/blob/main/data-pipeline/ollama/docker-compose.yml
How to fix: use docker-compose at Weaviate's docker guide instead:
version: '3.4'
services:
weaviate:
command:
- --host
- 0.0.0.0
- --port
- '8080'
- --scheme
- http
image: cr.weaviate.io/semitechnologies/weaviate:1.25.1
ports:
- 8080:8080
- 50051:50051
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: 'text2vec-ollama'
ENABLE_MODULES: 'text2vec-ollama'
CLUSTER_HOSTNAME: 'node1'
...
Link: https://weaviate.io/developers/weaviate/modules/retriever-vectorizer-modules/text2vec-ollama
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels