Sign inSign up

irfanuruchi/ollm-client

By irfanuruchi

Updated 6 months ago

Image
0

443

irfanuruchi/ollm-client repository overview

ollm-client

A clean, local-first AI chat UI for Ollama.

Features

  • Real-time streaming responses
  • Clean modern chat UI
  • Chat history persistence
  • Multi-model support
  • Docker-ready & multi-platform

Quick Start

docker run -p 8080:8080 \
  --add-host=host.docker.internal:host-gateway \
  -v $(pwd)/data:/app/data \
  -e OLLAMA_BASE_URL=http://host.docker.internal:11434 \
  -e DEFAULT_MODEL=llama3.2:3b \
  irfanuruchi/ollm-client:latest

Open: http://localhost:8080

Docker Compose

services:
  chat-ui:
    image: irfanuruchi/ollm-client:latest
    ports:
      - "8080:8080"
    environment:
      OLLAMA_BASE_URL: http://host.docker.internal:11434
    volumes:
      - ./data:/app/data

Notes

  • Requires Ollama running
  • Supports remote Ollama servers
  • Works on macOS, Linux, Windows

Author

Irfan Uruchi

Tag summary

Content type

Image

Digest

sha256:c26ba5f73

Size

66.6 MB

Last updated

6 months ago

docker pull irfanuruchi/ollm-client