@@ -40,7 +40,7 @@ Prerequisites:
40
40
- Docker - [ Overview of Docker Desktop | Docker Docs] ( https://docs.docker.com/desktop/ )
41
41
42
42
``` shell
43
- docker run -d --rm --name chromadb -v ./chroma:/chroma/chroma -e IS_PERSISTENT=TRUE -e ANONYMIZED_TELEMETRY=TRUE chromadb/chroma:0.5.11
43
+ docker run -d --rm --name chromadb -v ./chroma:/chroma/chroma -e IS_PERSISTENT=TRUE -e ANONYMIZED_TELEMETRY=TRUE chromadb/chroma:0.5.13
44
44
```
45
45
46
46
Options:
@@ -72,7 +72,7 @@ docker compose up -d --build
72
72
If you want to run a specific version of Chroma you can checkout the version tag you need:
73
73
74
74
``` shell
75
- git checkout release/0.5.11
75
+ git checkout release/0.5.13
76
76
```
77
77
78
78
### Docker Compose (Without Cloning the Repo)
@@ -93,7 +93,7 @@ networks:
93
93
driver : bridge
94
94
services :
95
95
chromadb :
96
- image : chromadb/chroma:0.5.11
96
+ image : chromadb/chroma:0.5.13
97
97
volumes :
98
98
- ./chromadb:/chroma/chroma
99
99
environment :
@@ -106,7 +106,7 @@ services:
106
106
- net
107
107
` ` `
108
108
109
- The above will create a container with the latest Chroma (` chromadb/chroma:0.5.11 `), will expose it to port `8000` on
109
+ The above will create a container with the latest Chroma (` chromadb/chroma:0.5.13 `), will expose it to port `8000` on
110
110
the local machine and will persist data in `./chromadb` relative path from where the `docker-compose.yaml` has been ran.
111
111
112
112
!!! tip "Versioning"
@@ -148,7 +148,7 @@ Get and install the chart:
148
148
` ` ` bash
149
149
helm repo add chroma https://amikos-tech.github.io/chromadb-chart/
150
150
helm repo update
151
- helm install chroma chroma/chromadb --set chromadb.apiVersion="0.5.11 "
151
+ helm install chroma chroma/chromadb --set chromadb.apiVersion="0.5.13 "
152
152
` ` `
153
153
154
154
By default the chart will enable authentication in Chroma. To get the token run the following :
0 commit comments