From 71d027ef79b407e9ad27a1e29a640ae54d03cdc4 Mon Sep 17 00:00:00 2001 From: Blair Hudson Date: Thu, 25 Apr 2024 18:30:21 +1000 Subject: [PATCH] Example Podman command --- docs/getting-started/troubleshooting.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/troubleshooting.md b/docs/getting-started/troubleshooting.md index c40e7e53..49fd9b7b 100644 --- a/docs/getting-started/troubleshooting.md +++ b/docs/getting-started/troubleshooting.md @@ -24,6 +24,14 @@ If you're experiencing connection issues with the SSL error of huggingface.co, p docker run -d -p 3000:8080 -e HF_ENDPOINT=https://hf-mirror.com/ --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main ``` +If you're using Podman on MacOS, to reach Ollama running on your computer you must enable the host loopback with `--network slirp4netns:allow_host_loopback=true` and override `OLLAMA_BASE_URL` to `http://host.containers.internal:11434`. The Open WebUI link remains the default: `http://localhost:3000`. + +**Example Podman Command**: + +```bash +podman run -d --network slirp4netns:allow_host_loopback=true -p 3000:8080 -e OLLAMA_BASE_URL=http://host.containers.internal:11434 -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main +``` + ### General Connection Errors **Ensure Ollama Version is Up-to-Date**: Always start by checking that you have the latest version of Ollama. Visit [Ollama's official site](https://ollama.com/) for the latest updates. @@ -67,4 +75,4 @@ For local installations of Open WebUI, navigate to the `open-webui` directory an 2. **Update password locally** (replace `HASH` and `admin@example.com`): ```bash sqlite3 backend/data/webui.db "UPDATE auth SET password='HASH' WHERE email='admin@example.com';" - ``` \ No newline at end of file + ```