noodles@lemmy.world to Selfhosted@lemmy.worldEnglish · 8 months agoDocker or podman?message-squaremessage-square47fedilinkarrow-up159file-text
arrow-up156message-squareDocker or podman?noodles@lemmy.world to Selfhosted@lemmy.worldEnglish · 8 months agomessage-square47fedilinkfile-text
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.
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.