Created
October 20, 2025 13:01
-
-
Save AnteaterKit/284cb48fa5aac29738d181d2a5688205 to your computer and use it in GitHub Desktop.
Установка
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Установка Ollama | |
| ### Установка Ollama | |
| 1. Перейдите на сайт [ollama.com](https://ollama.com) | |
| 2. Скачайте и установите Ollama для вашей операционной системы | |
| ### Установка Ollama WebUI | |
| 1. Создайте файл `compose.yaml` в корне проекта: | |
| ```yaml | |
| services: | |
| openWebUI: | |
| image: ghcr.io/open-webui/open-webui:main | |
| restart: always | |
| ports: | |
| - "3000:8080" | |
| extra_hosts: | |
| - "host.docker.internal:host-gateway" | |
| ``` | |
| 2. Запустите WebUI: | |
| ```bash | |
| docker compose up | |
| ``` | |
| 3. Уставновите 2 модели | |
| https://ollama.com/yandex/YandexGPT-5-Lite-8B-instruct-GGUF | |
| https://ollama.com/library/qwen3-embedding:8b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment