Skip to content

Instantly share code, notes, and snippets.

@szmeku
Last active April 18, 2020 14:02
Show Gist options
  • Select an option

  • Save szmeku/52e7bff836d2cbc7796386899de0a45e to your computer and use it in GitHub Desktop.

Select an option

Save szmeku/52e7bff836d2cbc7796386899de0a45e to your computer and use it in GitHub Desktop.
#!/bin/sh
docker run -u $(id -u ${USER}):$(id -g ${USER}) --net=host -v `pwd`:`pwd` -w `pwd` -ti --rm node:6.0.1 node "$@"
szmeku@localhost ~ %
#!/bin/sh
docker run -u $(id -u ${USER}):$(id -g ${USER}) --net=host -v `pwd`:`pwd` -w `pwd` -ti --rm node npm "$@"
szmeku@localhost ~ %
#!/bin/sh
docker run -u $(id -u ${USER}):$(id -g ${USER}) --net=host -v `pwd`:`pwd` -w `pwd` -ti --rm node $@
szmeku@localhost ~ %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment