MVPilgrim commited on
Commit
204d3d4
·
verified ·
1 Parent(s): 25a9fe8

Delete docker-compose-Orig.yml

Browse files
Files changed (1) hide show
  1. docker-compose-Orig.yml +0 -30
docker-compose-Orig.yml DELETED
@@ -1,30 +0,0 @@
1
- ---
2
- version: '3.4'
3
- services:
4
- weaviate:
5
- command:
6
- - --host
7
- - 0.0.0.0
8
- - --port
9
- - '8080'
10
- - --scheme
11
- - http
12
- image: semitechnologies/weaviate:1.23.8
13
- ports:
14
- - 8080:8080
15
- - 50051:50051
16
- volumes:
17
- - weaviate_data:/var/lib/weaviate
18
- restart: on-failure:0
19
- environment:
20
- QUERY_DEFAULTS_LIMIT: 25
21
- AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
22
- PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
23
- DEFAULT_VECTORIZER_MODULE: 'none'
24
- #ENABLE_MODULES: 'text2vec-cohere,text2vec-huggingface,text2vec-palm,text2vec-openai,generative-openai,generative-cohere,generative-palm,ref2vec-centroid,reranker-cohere,qna-openai'
25
- #ENABLE_MODULES: 'text2vec-gpt4all'
26
- #GPT4ALL_INFERENCE_API: "http://localhost:4891"
27
- CLUSTER_HOSTNAME: 'node1'
28
- volumes:
29
- weaviate_data:
30
- ...