noodles@lemmy.world to Selfhosted@lemmy.worldEnglish · 8 months agoDocker or podman?message-squaremessage-square47fedilinkarrow-up158file-text
arrow-up155message-squareDocker or podman?noodles@lemmy.world to Selfhosted@lemmy.worldEnglish · 8 months agomessage-square47fedilinkfile-text
minus-squarefmstrat@lemmy.nowsci.comlinkfedilinkEnglisharrow-up3arrow-down1·8 months agoJust pointing out your response may be dated. Docker can run rootless: https://docs.docker.com/engine/security/rootless/
minus-squarechiisana@lemmy.chiisana.netlinkfedilinkEnglisharrow-up3·8 months agoCool. Thanks! One less reason for me to even consider Porman on the radar. Personally, I really don’t care for the tool itself, and am way more interested in the apps that I can run and play with :)
minus-squarefmstrat@lemmy.nowsci.comlinkfedilinkEnglisharrow-up3·edit-28 months agoAgreed. Honesly I use docker like snap these days. Need a specific version of node? alias node="docker run --rm -ti -v '${PWD}:${PWD}' -w '${PWD}' node:16-alpine" alias npm="docker run --rm -ti -v '${PWD}:${PWD}' -w '${PWD}' node:16-alpine npm" Pretty much every CLI tool that isn’t super basic to install I do this with.
Just pointing out your response may be dated. Docker can run rootless: https://docs.docker.com/engine/security/rootless/
Cool. Thanks! One less reason for me to even consider Porman on the radar. Personally, I really don’t care for the tool itself, and am way more interested in the apps that I can run and play with :)
Agreed. Honesly I use docker like snap these days. Need a specific version of node?
alias node="docker run --rm -ti -v '${PWD}:${PWD}' -w '${PWD}' node:16-alpine" alias npm="docker run --rm -ti -v '${PWD}:${PWD}' -w '${PWD}' node:16-alpine npm"
Pretty much every CLI tool that isn’t super basic to install I do this with.