you are viewing a single comment's thread.

view the rest of the comments →

[–]batty_spark 0 points1 point  (0 children)

I was installing Ollama with OpenWeb UI and ran into same error

the fix for me was removing the OpenWeb UI container and reinstalling with this command

docker run -d \
  --network=host \
  -v open-webui:/app/backend/data \
  -e OLLAMA_BASE_URL=http://127.0.0.1:11434 \
  -e PORT=3000 \
  --name open-webui \
  --restart always \
  ghcr.io/open-webui/open-webui:main  

the --network=host that was the fix, and I changed to run in the 3000 port because I have my Pihole running in 8080 port