mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
15 lines
397 B
YAML
15 lines
397 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
# Chroma vector store.
|
||
|
chroma:
|
||
|
image: ghcr.io/chroma-core/chroma:0.5.0
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./volumes/chroma:/chroma/chroma
|
||
|
environment:
|
||
|
CHROMA_SERVER_AUTHN_CREDENTIALS: difyai123456
|
||
|
CHROMA_SERVER_AUTHN_PROVIDER: chromadb.auth.token_authn.TokenAuthenticationServerProvider
|
||
|
IS_PERSISTENT: TRUE
|
||
|
ports:
|
||
|
- "8000:8000"
|