diff --git a/docker-compose.yaml b/docker-compose.yaml index 221f341..3583c99 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -12,8 +12,8 @@ services: networks: - mem0_network volumes: - - ./chroma_db:/app/data/chroma_db # ChromaDB storage - - ./history:/app/data/history # History db location + - ./data/chroma_db:/app/data/chroma_db # ChromaDB storage + - ./data/history:/app/data/history # History db location - .:/app # Server code. This allows to reload the app when the server code is updated - ../mem0:/app/packages/mem0 # Mem0 library. This allows to reload the app when the library code is updated command: uvicorn main:app --host 0.0.0.0 --port 8000 --reload # Enable auto-reload