Spaces:
Running
Running
version: '3.8' | |
services: | |
app: | |
build: . | |
ports: | |
- "8000:8000" | |
env_file: | |
- .env | |
volumes: | |
- ./:/app | |
depends_on: | |
- ollama | |
ollama: | |
image: ollama/ollama | |
ports: | |
- "11434:11434" | |
volumes: | |
- ollama-data:/root/.ollama | |
chroma: | |
image: chromadb/chroma | |
ports: | |
- "8000:8000" | |
volumes: | |
- chroma-data:/chroma | |
environment: | |
- PERSIST_DIRECTORY=/chroma | |
volumes: | |
ollama-data: | |
chroma-data: |