noodles@lemmy.world to Selfhosted@lemmy.worldEnglish · 1 year agoDocker or podman?message-squaremessage-square47fedilinkarrow-up159file-text
arrow-up156message-squareDocker or podman?noodles@lemmy.world to Selfhosted@lemmy.worldEnglish · 1 year agomessage-square47fedilinkfile-text
minus-squarechiisana@lemmy.chiisana.netlinkfedilinkEnglisharrow-up3·11 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-211 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.
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.