Skip to content

meilisearch tracing_actix_web::middleware error_code: "document_not_found" #5051

Discussion options

You must be logged in to vote

I’ve finally resolved my issue with running local RAG and external Ollama on a Docker container on another CPU powered host. I thought I’d share my configuration with anyone facing similar problems. The scenario involves using Librechat with RAG in containers, while Ollama runs on another GPU-powered server that’s also running in a container.

On Ollama server here is my final docker-compose config:

services:
  ollama:
    container_name: ollama
    image: ollama/ollama:latest
    ports:
      - "11434:11434"
    volumes:
      - ./ollama:/root/.ollama
    environment:
      - NVIDIA_VISIBLE_DEVICES=all
      - OLLAMA_HOST=0.0.0.0:11434
    deploy:
      resources:
        reservations:
  …

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by aleibovici
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #5049 on December 19, 2024 19:20.