mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-24 01:18:46 +00:00

This minor change updates the URL of the [Weaviate Docker image](https://weaviate.io/developers/weaviate/installation/docker-compose). Instead of the standard Docker registry, Weaviate now makes use of a custom registry running at `cr.weaviate.io`. Thanks in advance for merging. 🤖 beep boop, the Weaviate bot PS: Please note that the Weaviate Bot automates this PR; apologies if PR formatting is missing. If you have questions, feel free to reach out via our [forum](https://forum.weaviate.io) or [Slack](https://weaviate.io/slack). Co-authored-by: Matt Robinson <mrobinson@unstructured.io>
21 lines
730 B
YAML
21 lines
730 B
YAML
version: '3.4'
|
|
services:
|
|
weaviate:
|
|
image: cr.weaviate.io/semitechnologies/weaviate:1.19.6
|
|
restart: on-failure:0
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
QUERY_DEFAULTS_LIMIT: 20
|
|
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
|
|
PERSISTENCE_DATA_PATH: "./data"
|
|
DEFAULT_VECTORIZER_MODULE: text2vec-transformers
|
|
ENABLE_MODULES: text2vec-transformers
|
|
TRANSFORMERS_INFERENCE_API: http://t2v-transformers:8080
|
|
CLUSTER_HOSTNAME: 'node1'
|
|
t2v-transformers:
|
|
image: semitechnologies/transformers-inference:sentence-transformers-multi-qa-MiniLM-L6-cos-v1
|
|
environment:
|
|
ENABLE_CUDA: 0 # set to 1 to enable
|
|
# NVIDIA_VISIBLE_DEVICES: all # enable if running with CUDA
|