this post was submitted on 28 Jul 2024
37 points (100.0% liked)

Linux

4971 readers
88 users here now

A community for everything relating to the linux operating system

Also check out [email protected]

Original icon base courtesy of [email protected] and The GIMP

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 month ago (1 children)

docker run -d -p 3000:8080 --gpus=all -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama

How risky is running this command?

[–] anzo 6 points 1 month ago (1 children)

Same as using any open source app. Actually, less (you're only giving access to some paths, gpus, and listening on a port). You should use 127.0.0.1:xxx:yyy so that it's not attached to all available ip addresses (0.0.0.0 is implicit)

[–] [email protected] 1 points 1 month ago (1 children)

Thank you!

Does 0.0.0.0 open it to anyone subject to firewall? It seems it didn't work for local network access

[–] anzo 3 points 1 month ago

Yes, it's subject to firewall