Skip to content

Commit

Permalink
switch to port 8002 b/c 8001 is in use
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr223 committed Sep 10, 2023
1 parent 8cfb883 commit b33496a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ utils:
# use_HTTP_chromadb_client: False
vectordb_update_time: 10
chromadb_host: "0.0.0.0"
chromadb_port: 8001
chromadb_port: 8002
collection_name: "dev_collection"
reset_collection: True # reset the entire collection each time it is accessed by a new data manager instance
embeddings:
Expand Down
5 changes: 2 additions & 3 deletions deploy/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,11 @@ services:

chromadb:
image: ghcr.io/chroma-core/chroma:latest
command: uvicorn chromadb.app:app --workers 1 --host 0.0.0.0 --port 8001 --log-config log_config.yml
command: uvicorn chromadb.app:app --workers 1 --host 0.0.0.0 --port 8002 --log-config log_config.yml
ports:
- 8001:8001 # host:container
- 8002:8002 # host:container
volumes:
- a2rchi-data:/chroma/chroma/
restart: on-failure

# create-account:
# build:
Expand Down

0 comments on commit b33496a

Please sign in to comment.