Lots of groundwork and the app runs but not currently working to generate embeddings.
This commit is contained in:
17
VectorSearchApp/docker-compose.yml
Normal file
17
VectorSearchApp/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
qdrant:
|
||||
image: qdrant/qdrant:latest
|
||||
container_name: vector-search-qdrant
|
||||
ports:
|
||||
- "6333:6333"
|
||||
- "6334:6334"
|
||||
volumes:
|
||||
- qdrant_storage:/qdrant/storage
|
||||
environment:
|
||||
- QDRANT__SERVICE__API_GRPC_PORT=6334
|
||||
- QDRANT__SERVICE__HTTP_PORT=6333
|
||||
|
||||
volumes:
|
||||
qdrant_storage:
|
||||
Reference in New Issue
Block a user