Skip to content

virtUOS/qdrant-indexer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ“¦ Building a docker image for qdrant-loader

A Docker image for serving qdrant-loader and its mcp server.

πŸš€ Usage

Pull and run the latest image

# Run MCP server (default)
docker run -p 8080:8080 ghcr.io/virtuos/qdrant-indexer:latest

# Run ingestion (override CMD)
docker run -v $(pwd)/config.yaml:/app/config.yaml \
  ghcr.io/virtuos/qdrant-indexer:latest \
  qdrant-loader --config /app/config.yaml ingest

Run with Compose

services:
  mcp:
    image: ghcr.io/virtuos/qdrant-indexer:latest
    ports:
      - "8080:8080"

  ingest:
    image: ghcr.io/virtuos/qdrant-indexer:latest
    command: ["qdrant-loader", "--config", "/app/config.yaml", "ingest"]
    volumes:
      - ./config.yaml:/app/config.yaml:ro

πŸ€– Automated builds

Daily at 6am UTC or by manual trigger .github/workflows/build-push-image.yml checks for a new vLLM release and rebuilds if needed.

πŸ“ License

MIT

βœ’οΈ Authors

virtUOS, Osnabrueck University

About

A docker image to serve qdrant-loader

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors