mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
- Remove .env file (should not be committed to version control) - Revert docker-compose.override.yml to use ghcr images instead of local builds - Remove unnecessary DOCLING config section from __init__.py - Remove model context window additions (litellm already provides this) - Keep litellm<1.70.0 constraint due to Ollama vector_stores 404 errors Addresses all feedback from PR #211 review
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
frontend:
|
|
build: ghcr.io/modsetter/surfsense_ui:latest
|
|
ports:
|
|
- "${FRONTEND_PORT:-3000}:3000"
|
|
volumes:
|
|
- ./surfsense_web:/app
|
|
- /app/node_modules
|
|
depends_on:
|
|
- backend
|
|
environment:
|
|
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL:-http://backend:8000}
|
|
|
|
backend:
|
|
build: ghcr.io/modsetter/surfsense_backend:latest
|
|
ports:
|
|
- "${BACKEND_PORT:-8000}:8000"
|
|
volumes:
|
|
- ./surfsense_backend:/app
|
|
depends_on:
|
|
- db
|
|
env_file:
|
|
- ./surfsense_backend/.env
|
|
environment:
|
|
- DATABASE_URL=postgresql+asyncpg://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@db:5432/${POSTGRES_DB:-surfsense}
|
|
- PYTHONPATH=/app
|
|
- UVICORN_LOOP=asyncio
|
|
- UNSTRUCTURED_HAS_PATCHED_LOOP=1
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
|
- LANGCHAIN_TRACING_V2=false
|
|
- LANGSMITH_TRACING=false
|
|
- TESSDATA_PREFIX=/usr/share/tesseract-ocr/5/tessdata/
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|