Examples of use

Use node and npm commands without installing:

copy paste at end of your ~/.bashrc or ~/.zshrc to have node and npm commands working with docker:

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 $*"
}
circle-info

That this shouldn't be a permanent setup cause it will be a lot slower than native commands cause this will create and delete a docker container each time you use the command

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

Using git submodules and docker compose

https://github.com/cvut-chat/cvutchat/arrow-up-right

https://github.com/PumpDungeon/pump.dungeonarrow-up-right

Last updated