adr1an@programming.devM to Linux@programming.dev · 7 months ago[Weekly thread] GNU+Linux help: ask anything!message-squaremessage-square2fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1message-square[Weekly thread] GNU+Linux help: ask anything!adr1an@programming.devM to Linux@programming.dev · 7 months agomessage-square2fedilink
minus-squaresunzu@kbin.runlinkfedilinkarrow-up1·7 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-up1·7 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)
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)