Add OpenMemory (#2676)
Co-authored-by: Saket Aryan <94069182+whysosaket@users.noreply.github.com> Co-authored-by: Saket Aryan <saketaryan2002@gmail.com>
This commit is contained in:
26
openmemory/api/docker-compose.yml
Normal file
26
openmemory/api/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
services:
|
||||
mem0_store:
|
||||
image: qdrant/qdrant
|
||||
ports:
|
||||
- "6333:6333"
|
||||
volumes:
|
||||
- mem0_storage:/mem0/storage
|
||||
api:
|
||||
image: mem0/openmemory-mcp
|
||||
build: .
|
||||
environment:
|
||||
- OPENAI_API_KEY
|
||||
- USER
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
- mem0_store
|
||||
ports:
|
||||
- "8765:8765"
|
||||
volumes:
|
||||
- .:/usr/src/openmemory
|
||||
command: >
|
||||
sh -c "uvicorn main:app --host 0.0.0.0 --port 8765 --reload --workers 4"
|
||||
|
||||
volumes:
|
||||
mem0_storage:
|
||||
Reference in New Issue
Block a user