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
{{ message }}
This repository was archived by the owner on May 10, 2024. It is now read-only.
- Removed platform specific commands. Now things are platform independent
- Removed server verification with curl - no value
- The default way of running Chroma is via docker compose now
Refs: chroma-core/chroma#986
A good security practice is to store the password securely. In the example below we use bcrypt (currently the only supported hash in Chroma server side auth) to hash the plaintext password.
743
742
:::
744
743
745
-
**_Linux/MacOS:_**
746
-
747
-
```bash
748
-
export CHROMA_USER=admin
749
-
export CHROMA_PASSWORD=admin
750
-
docker run --rm --entrypoint htpasswd httpd:2 -Bbn ${CHROMA_USER}${CHROMA_PASSWORD}> server.htpasswd
0 commit comments