Spaces:
Runtime error
Runtime error
File size: 623 Bytes
a6c26b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
version: '3.9'
networks:
net:
driver: bridge
services:
unstructured-api:
image: downloads.unstructured.io/unstructured-io/unstructured-api:latest
command: --port 8000 --host 0.0.0.0
ports:
- "${UNSTRUCTURED_PORT:-8005}:8000"
env_file:
- ../../.env
networks:
- net
chromadb:
image: chromadb/chroma:latest
volumes:
- ./chromadb:/chroma/chroma
environment:
- IS_PERSISTENT=TRUE
- PERSIST_DIRECTORY=/chroma/chroma
- ANONYMIZED_TELEMETRY=${ANONYMIZED_TELEMETRY:-TRUE}
ports:
- "${CHROMA_PORT:-8004}:8000"
networks:
- net |