Skip to content
Snippets Groups Projects
Unverified Commit 882b3622 authored by Jean-Francois Laflamme's avatar Jean-Francois Laflamme Committed by GitHub
Browse files

Added support for host.docker.internal (ie: to use local chromadb ser… (#195)

Added support for host.docker.internal (ie: to use local chromadb server)
parent a62e891f
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ OPEN_MODEL_PREF='gpt-3.5-turbo' ...@@ -21,7 +21,7 @@ OPEN_MODEL_PREF='gpt-3.5-turbo'
########################################### ###########################################
# Enable all below if you are using vector database: Chroma. # Enable all below if you are using vector database: Chroma.
# VECTOR_DB="chroma" # VECTOR_DB="chroma"
# CHROMA_ENDPOINT='http://localhost:8000' # CHROMA_ENDPOINT='http://host.docker.internal:8000'
# Enable all below if you are using vector database: Pinecone. # Enable all below if you are using vector database: Pinecone.
VECTOR_DB="pinecone" VECTOR_DB="pinecone"
...@@ -48,4 +48,4 @@ PINECONE_INDEX= ...@@ -48,4 +48,4 @@ PINECONE_INDEX=
STORAGE_DIR="./server/storage" STORAGE_DIR="./server/storage"
GOOGLE_APIS_KEY= GOOGLE_APIS_KEY=
UID='1000' UID='1000'
GID='1000' GID='1000'
\ No newline at end of file
...@@ -26,3 +26,5 @@ services: ...@@ -26,3 +26,5 @@ services:
- .env - .env
networks: networks:
- anything-llm - anything-llm
extra_hosts:
- "host.docker.internal:host-gateway"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment