You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this expected, maybe because of API deprecation? It doesn't happen in v0.6.2.
Docker Compose
networks:
net:
driver: bridgeservices:
server:
image: ghcr.io/chroma-core/chroma:0.6.3environment:
# Set to true to persist data to disk
- IS_PERSISTENT=FALSE# volumes:# Default configuration for persist_directory in chromadb/config.py# Currently it's located in "/chroma/chroma/"# - chroma-data:/chroma/chroma/ports:
- 8000:8000networks:
- nethealthcheck:
# Adjust below to match your container porttest: [ "CMD", "curl", "-f", "http://localhost:8000/api/v2/heartbeat" ]interval: 30stimeout: 10sretries: 3command: "--workers 1 --host 0.0.0.0 --port 8000 --proxy-headers --timeout-keep-alive 30"volumes:
chroma-data:
driver: local
The text was updated successfully, but these errors were encountered:
Context
I'm testing out Chroma-go with a Chroma DB 0.6.3 server running in docker. Compose setup is shown below.
When creating a collection like so:
The following error is printed:
From the container logs, it seems that
GET /api/v1/tenants/default_tenant
call fails:Is this expected, maybe because of API deprecation? It doesn't happen in v0.6.2.
Docker Compose
The text was updated successfully, but these errors were encountered: