Skip to content

Commit

Permalink
Merge pull request #51 from blairhudson/patch-1
Browse files Browse the repository at this point in the history
Example Podman command in troubleshooting.md
  • Loading branch information
tjbck authored May 5, 2024
2 parents 1040afe + 71d027e commit ba2d61b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/getting-started/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -67,4 +75,4 @@ For local installations of Open WebUI, navigate to the `open-webui` directory an
2. **Update password locally** (replace `HASH` and `[email protected]`):
```bash
sqlite3 backend/data/webui.db "UPDATE auth SET password='HASH' WHERE email='[email protected]';"
```
```

0 comments on commit ba2d61b

Please sign in to comment.