Remove Freeform and Find from UI. Allow Description to be added to Reviewed job

This commit is contained in:
Aaron Roberts
2026-06-29 13:09:01 +01:00
parent 48f958de6c
commit 04bbbebd5a
10 changed files with 394 additions and 403 deletions

View File

@@ -27,6 +27,15 @@ services:
MAX_UPLOAD_SIZE_MB: ${MAX_UPLOAD_SIZE_MB:-100}
DATABASE_URL: ${DATABASE_URL:-postgresql://ocr_user:ocr_password@postgres:5432/ocr_db}
OCR_IMAGES_DIR: ${OCR_IMAGES_DIR:-/data/ocr_images}
ENABLE_DEEPSEEK_LOCAL: ${ENABLE_DEEPSEEK_LOCAL:-true}
OLLAMA_BASE_URL: ${OLLAMA_BASE_URL:-http://host.docker.internal:11434}
OLLAMA_MODELS: ${OLLAMA_MODELS:-}
DEFAULT_OCR_MODEL: ${DEFAULT_OCR_MODEL:-deepseek-local}
OLLAMA_TIMEOUT: ${OLLAMA_TIMEOUT:-300}
# Lets the container reach an Ollama server running on the Docker host
# (works out of the box on Docker Desktop; required for Linux engines).
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./models:/models
- ./ocr_images:/data/ocr_images