adr1an@programming.devM to Linux@programming.dev · 3 months ago[Weekly thread] GNU+Linux help: ask anything!message-squaremessage-square36fedilinkarrow-up136arrow-down10
arrow-up136arrow-down1message-square[Weekly thread] GNU+Linux help: ask anything!adr1an@programming.devM to Linux@programming.dev · 3 months agomessage-square36fedilink
minus-squaresunzu@kbin.runlinkfedilinkarrow-up2·3 months ago 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?
minus-squareadr1an@programming.devOPMlinkfedilinkarrow-up6·3 months agoSame 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)
minus-squaresunzu@kbin.runlinkfedilinkarrow-up1·3 months agoThank you! Does 0.0.0.0 open it to anyone subject to firewall? It seems it didn’t work for local network access
How risky is running this command?
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)
Thank you!
Does 0.0.0.0 open it to anyone subject to firewall? It seems it didn’t work for local network access
Yes, it’s subject to firewall