diff --git a/charts/chromadb-chart/Chart.yaml b/charts/chromadb-chart/Chart.yaml index 7271296..5f56bfc 100644 --- a/charts/chromadb-chart/Chart.yaml +++ b/charts/chromadb-chart/Chart.yaml @@ -17,6 +17,6 @@ keywords: - ai/ml type: application -version: 0.1.11 +version: 0.1.12 # chromadb version appVersion: "0.4.6" diff --git a/image/Dockerfile b/image/Dockerfile index dc83ec0..0abd223 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -1,4 +1,4 @@ -ARG CHROMA_VERSION=0.4.3 +ARG CHROMA_VERSION=0.4.6 FROM ghcr.io/chroma-core/chroma:${CHROMA_VERSION} as base COPY ./image/docker_entrypoint.sh /docker_entrypoint.sh diff --git a/image/docker_entrypoint.sh b/image/docker_entrypoint.sh index e618116..d666279 100755 --- a/image/docker_entrypoint.sh +++ b/image/docker_entrypoint.sh @@ -3,5 +3,5 @@ export CHROMA_SERVER_HTTP_PORT=${CHROMA_SERVER_HTTP_PORT:-8000} export CHROMA_SERVER_LOG_CONFIG=${CHROMA_SERVER_LOG_CONFIG:-log_config.yaml} export CHROMA_SERVER_HOST=${CHROMA_SERVER_HOST:-"0.0.0.0"} . /chroma/venv/bin/activate -#pip install --force-reinstall --no-cache-dir chroma-hnswlib +pip install --force-reinstall --no-cache-dir chroma-hnswlib uvicorn chromadb.app:app --workers 1 --host ${CHROMA_SERVER_HOST} --port ${CHROMA_SERVER_HTTP_PORT} --proxy-headers --log-config ${CHROMA_SERVER_LOG_CONFIG}