From 75e5a6b6de948fb4a1e844adbee5e400a4895758 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Tue, 14 Nov 2023 12:31:24 -0800 Subject: [PATCH] Remove all the example mounted volumes as they're no longer required in the new architecture --- docker-compose.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c09d4310..857b4a4a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,20 +32,6 @@ services: - "42110:42110" working_dir: /app volumes: - - .:/app - # These mounted volumes hold the raw data that should be indexed for search. - # The path in your local directory (left hand side) - # points to the files you want to index. - # The path of the mounted directory (right hand side), - # must match the path prefix in your config file. - - ./tests/data/org/:/data/org/ - - ./tests/data/images/:/data/images/ - - ./tests/data/markdown/:/data/markdown/ - - ./tests/data/pdf/:/data/pdf/ - # Embeddings and models are populated after the first run - # You can set these volumes to point to empty directories on host - - ./tests/data/embeddings/:/root/.khoj/content/ - - ./tests/data/models/:/root/.khoj/search/ - khoj_config:/root/.khoj/ - khoj_models:/root/.cache/torch/sentence_transformers # Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/