Commit 8d36b533 authored by jyong's avatar jyong

add qdrant configration

parent 724e0537
......@@ -77,9 +77,9 @@ WEAVIATE_API_KEY=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih
WEAVIATE_GRPC_ENABLED=false
WEAVIATE_BATCH_SIZE=100
# Qdrant configuration, use `path:` prefix for local mode or `https://your-qdrant-cluster-url.qdrant.io` for remote mode
QDRANT_URL=path:storage/qdrant
QDRANT_API_KEY=your-qdrant-api-key
# Qdrant configuration
QDRANT_URL=http://localhost:6333
QDRANT_API_KEY=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pnnq
# Mail configuration, support: resend
MAIL_TYPE=
......
......@@ -49,4 +49,15 @@ services:
AUTHORIZATION_ADMINLIST_ENABLED: 'true'
AUTHORIZATION_ADMINLIST_USERS: 'hello@dify.ai'
ports:
- "8080:8080"
\ No newline at end of file
- "8080:8080"
# The Qdrant vector store.
qdrant:
image: qdrant/qdrant:v1.5.1
ports:
- 6333:6333
restart: always
volumes:
- ./qdrant/data/:/qdrant/storage
environment:
QDRANT__SERVICE__API_KEY: WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pnnq
\ No newline at end of file
......@@ -257,4 +257,15 @@ services:
- api
- web
ports:
- "80:80"
\ No newline at end of file
- "80:80"
# The Qdrant vector store.
qdrant:
image: qdrant/qdrant:v1.5.1
ports:
- 6333:6333
restart: always
volumes:
- ./qdrant/data/:/qdrant/storage
environment:
QDRANT__SERVICE__API_KEY: WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pnnq
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment