File size: 388 Bytes
8a50149 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | version: '3.8'
# Development overrides - mount code read/write and enable live reload
services:
api:
volumes:
- ./:/app:rw
- /app/.vector_index
environment:
# Ensure tokenizer parallelism is disabled inside container for stability
- TOKENIZERS_PARALLELISM=false
command: ["uvicorn", "app.api:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|