Skip to content

Instantly share code, notes, and snippets.

View nateclos's full-sized avatar

Nate Clos nateclos

View GitHub Profile
@nateclos
nateclos / README.md
Created November 30, 2025 22:56
OLlama, Open WebUI, and SearXNG Setup

Local LLM Setup with Ollama + Open WebUI + SearxNG

This setup gives you a private, local ChatGPT-like interface with web search capabilities.

What's Included

  • Ollama - Runs LLMs locally on your GPU
  • Open WebUI - Clean web interface (like ChatGPT) to chat with your models
  • SearxNG - Private meta-search engine that Open WebUI can use for web searches
@nateclos
nateclos / docker-compose.yml
Created November 29, 2025 19:54
Local LLM Docker Compose
services:
ollama:
image: ollama/ollama
container_name: ollama
volumes:
- ollama:/root/.ollama
ports:
- "11434:11434"
deploy:
resources: