{"id":28548439,"url":"https://github.com/rafa-mori/mori-ollama-srv","last_synced_at":"2025-08-03T04:06:54.340Z","repository":{"id":278790307,"uuid":"936783016","full_name":"rafa-mori/mori-ollama-srv","owner":"rafa-mori","description":"This project sets up an environment to run Open-WebUI and Ollama using docker compose.","archived":false,"fork":false,"pushed_at":"2025-06-20T17:01:54.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T21:39:00.187Z","etag":null,"topics":["ai","docker","docker-compose","llm","nlp","ollama","ollama-client","ollama-gui","openwebui"],"latest_commit_sha":null,"homepage":"https://github.com/rafa-mori/mori-ollama-srv","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rafa-mori.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"support/setup-dev.sh","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-21T17:18:00.000Z","updated_at":"2025-06-20T17:48:13.000Z","dependencies_parsed_at":"2025-07-02T21:32:56.752Z","dependency_job_id":"2f7b7f7c-b230-4510-93dc-329bee493eb5","html_url":"https://github.com/rafa-mori/mori-ollama-srv","commit_stats":null,"previous_names":["faelmori/mori-ollama-srv"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rafa-mori/mori-ollama-srv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafa-mori%2Fmori-ollama-srv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafa-mori%2Fmori-ollama-srv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafa-mori%2Fmori-ollama-srv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafa-mori%2Fmori-ollama-srv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rafa-mori","download_url":"https://codeload.github.com/rafa-mori/mori-ollama-srv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafa-mori%2Fmori-ollama-srv/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268492244,"owners_count":24258783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","docker","docker-compose","llm","nlp","ollama","ollama-client","ollama-gui","openwebui"],"created_at":"2025-06-10T01:09:49.628Z","updated_at":"2025-08-03T04:06:54.091Z","avatar_url":"https://github.com/rafa-mori.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Mori Ollama Stack (Open-WebUI + Ollama via Docker Compose)\n\nThis repository sets up a ready-to-use environment for running Ollama models with Open-WebUI, allowing local experimentation with LLMs using Docker Compose.\n\n---\n\n## 📦 Installation\n\n```bash\ngit clone https://github.com/rafa-mori/mori-ollama-srv.git\ncd mori-ollama-srv\nmake dev\n```\n\nTo install using the advanced script with custom flags:\n\n```bash\nbash support/setup-dev.sh --light        # Use lightweight model\nbash support/setup-dev.sh --no-benchmark # Skip benchmark step\nbash support/setup-dev.sh --remote=user@host\n```\n\nOr simply use Make:\n\n```bash\nmake install ARGS=\"--light\"\nmake install ARGS=\"--remote=user@host\"\n```\n\n---\n\n## 🧠 Supported Models\n\n| Model Name              | Description                                                                 |\n|-------------------------|-----------------------------------------------------------------------------|\n| `deepseek-coder:6.7b`  | Coding-focused LLM with structured responses. Great for code generation.   |\n| `mistral`              | Lightweight general-purpose LLM. Lower RAM usage and faster loading.        |\n| `llama`                | Meta's LLM family — generalist models with decent coding ability.           |\n\nTo change models:\n\n```bash\nmake install ARGS=\"--light\"          # Use mistral\nmake install ARGS=\"--no-benchmark\"   # Skip testing\n```\n\n---\n\n## 🛠️ Makefile Targets\n\n| Command         | Description                                               |\n|----------------|-----------------------------------------------------------|\n| `make dev`     | Optimizes CPU + starts everything with recommended model. |\n| `make up`      | Starts the Docker stack.                                  |\n| `make pull`    | Pulls the default model (deepseek-coder:6.7b).            |\n| `make run`     | Runs the model interactively (via CLI inside container).  |\n| `make logs`    | Shows the WebUI logs.                                     |\n| `make clean`   | Clean up all Docker artifacts and volumes.                |\n| `make test`    | Re-runs setup-dev.sh with benchmarking.                   |\n| `make help`    | Displays all available commands and options.              |\n\nYou can also pass flags like this:\n\n```bash\nmake install ARGS=\"--remote=user@host\"\nmake install ARGS=\"--light --no-benchmark\"\n```\n\n---\n\n## 📂 Project Structure\n\n```plaintext\nmori-ollama-srv/\n├── docker-compose.yaml\n├── support/\n│   └── setup-dev.sh         # Main setup script\n├── Makefile                 # Developer commands and automation\n├── secrets/                 # Optional environment overrides\n└── README.md\n```\n\n---\n\n## 🔍 Benchmarking\n\nThe script auto-benchmarks response time on the first call to ensure your setup is responsive.\nYou can skip benchmarking with:\n\n```bash\nmake install ARGS=\"--no-benchmark\"\n```\n\n---\n\n## 🌍 Access the UI\n\nAfter starting:\n\n\u003e [http://localhost:3000](http://localhost:3000)\n\n---\n\n## 📄 License\n\nMIT License — Rafael Mori (c) 2025\n\n---\n\n## 💬 Contributing\n\nPRs, issues, and suggestions are always welcome!\n\n---\n\n## 📧 Contact\n\n- GitHub: [@rafa-mori](https://github.com/rafa-mori)\n- Site: [https://rafamori.pro](https://rafamori.pro)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafa-mori%2Fmori-ollama-srv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frafa-mori%2Fmori-ollama-srv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafa-mori%2Fmori-ollama-srv/lists"}