chore: add chromadb to store embeddings from vectorcode

This commit is contained in:
João Paulo Dubas 2025-03-16 21:25:23 +00:00
parent 81154801cb
commit e2bfbedd47
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA

View File

@ -30,8 +30,22 @@ services:
- 'home_local_state:/home/coder/.local/state' - 'home_local_state:/home/coder/.local/state'
- 'home_plugins_tmux:/home/coder/.config/tmux/plugins' - 'home_plugins_tmux:/home/coder/.config/tmux/plugins'
chroma:
image: 'ghcr.io/chroma-core/chroma:0.6.3'
init: true
restart: unless-stopped
hostname: chroma
environment:
IS_PERSISTENT: 'true'
PERSISTENT_DIRECTORY: /data
volumes:
- 'chroma_data:/data'
ports:
- '${IDE_CHROMA_PORT:-8000}'
volumes: volumes:
home_cache: {} home_cache: {}
home_local_share: {} home_local_share: {}
home_local_state: {} home_local_state: {}
home_plugins_tmux: {} home_plugins_tmux: {}
chroma_data: {}