Examples of use
Use node and npm commands without installing:
npm() {
docker run --rm --network host \
-v "$(pwd):/workdir" \
-it node:current-alpine \
sh -c "cd /workdir && npm $*"
}
node() {
docker run --rm --network host \
-v "$(pwd):/workdir" \
-it node:current-alpine \
sh -c "cd /workdir && node $*"
}Monitor Disk Usage
docker run --rm -it --privileged -v /:/mnt alpine sh -c "apk add ncdu && ncdu -x /mnt --exclude /mnt"Share terminal over the web
MongoDB
MySQL
Multi-repo project examples
Last updated