doc: rootless mode docker installation #139
bwiercinski
started this conversation in
Ideas
Replies: 4 comments
|
Hi, Thanks for the suggestion! Feel free edit our troubleshooting.md doc and make a PR! |
0 replies
|
How does this work with podman. Another rootless provider? |
0 replies
|
Podman works the same, except the Note that as mentioned by the OP, with this method the Ollama server must be hosted at |
0 replies
|
I've been using a Podman rootless configuration for some time. I've submitted pull request open-webui/open-webui#877 to update the README with details. This configuration doesn't require Ollama to listen anywhere but localhost. 🥂 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem? Please describe.
I've tried to install webui on a docker running in rootless mode. Unfortunately, the instructions don't work for rootless. The
--add-host=host.docker.internal:host-gatewaydoes not work on rootless by design stack overflow. Also--network=hostdoesn't work docker docs. What I had to do is:host.docker.internalto my local interface (e.g. wifi interface) using:(alternatively replace in
$(...)toip addr show wifi-interface | grep -oP 'inet \K[0-9.]+')Describe the solution you'd like
Improve documentation for other affected people.
Describe alternatives you've considered
use socat
https://stackoverflow.com/a/74979409/11226692
All reactions