mirror of
https://github.com/open-webui/open-webui.git
synced 2026-03-09 15:25:32 -05:00
Standalone ollama-webui #64
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Herz3h on GitHub (Nov 27, 2023).
Describe the bug
I just pulled this webui with the following docker command:
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:mainI already had ollama running separately.
And the default Ollama Server URL was
/ollama/apiDon't know if this has been changed lately on ollama, but the correct endpoint seems to be
/apiTo Reproduce
Install ollama separately, then run òllama serve
Then run following docker-command:docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main`It should say connection server failed because the endpoint is /api
Expected behavior
Should maybe mention this in the part of the readme talking about the standalone ollama-webui version
Screenshots
NA
Desktop (please complete the following information):
Additional context
@tjbck commented on GitHub (Nov 28, 2023):
Hi, Could you verify that both Ollama WebUI and the Ollama instance is running on the same machine? I'll close this for now as
/ollama/apiroute is the backend reverse proxy route which redirects to your Ollama api/apiroute and is how it's supposed to be by design. Keep us updated, Thanks.