diff --git a/docs/extras/integrations/vectorstores/chroma.ipynb b/docs/extras/integrations/vectorstores/chroma.ipynb index ab895b0a9..4a3d5dfc0 100644 --- a/docs/extras/integrations/vectorstores/chroma.ipynb +++ b/docs/extras/integrations/vectorstores/chroma.ipynb @@ -215,10 +215,23 @@ "Chroma has the ability to handle multiple `Collections` of documents, but the LangChain interface expects one, so we need to specify the collection name. The default collection name used by LangChain is \"langchain\".\n", "\n", "Here is how to clone, build, and run the Docker Image:\n", - "```\n", + "```sh\n", "git clone git@github.com:chroma-core/chroma.git\n", - "docker-compose up -d --build\n", - "```" + "```\n", + "\n", + "Edit the `docker-compose.yml` file and add `ALLOW_RESET=TRUE` under `environment`\n", + "```yaml\n", + " ...\n", + " command: uvicorn chromadb.app:app --reload --workers 1 --host 0.0.0.0 --port 8000 --log-config log_config.yml\n", + " environment:\n", + " - IS_PERSISTENT=TRUE\n", + " - ALLOW_RESET=TRUE\n", + " ports:\n", + " - 8000:8000\n", + " ...\n", + "```\n", + "\n", + "Then run `docker-compose up -d --build`" ] }, {