chore: initial commit

This commit is contained in:
albertfj114
2026-03-29 22:02:22 -04:00
commit b2935ae932
54 changed files with 25031 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
chromadb:
image: chromadb/chroma:latest
container_name: chromadb
restart: unless-stopped
ports:
- "8000:8000"
volumes:
- /opt/chromadb/data:/data
- /opt/chromadb/config.yaml:/config.yaml
command: ["run", "/config.yaml"]
environment:
- IS_PERSISTENT=TRUE
- ANONYMIZED_TELEMETRY=FALSE
chromadb-admin:
build: .
container_name: chromadb-admin
restart: unless-stopped
ports:
- "3002:3001"
depends_on:
- chromadb