chore: initial commit
This commit is contained in:
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user