Spaces:
Runtime error
Runtime error
File size: 479 Bytes
8d58e30 74cf3ec 8d58e30 74cf3ec 8d58e30 74cf3ec 8d58e30 74cf3ec 8d58e30 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
version: '3.9'
networks:
net:
driver: bridge
services:
server:
image: ghcr.io/chroma-core/chroma:latest
environment:
- IS_PERSISTENT=TRUE
volumes:
# Default configuration for persist_directory in chromadb/config.py
# Currently it's located in "/chroma/chroma/"
- chroma-data:/home/ubuntu/research/arxiv-plagiarism-checker-llm/embeddings
ports:
- 8000:8000
networks:
- net
volumes:
chroma-data:
driver: local |