Last active
April 18, 2020 14:02
-
-
Save szmeku/52e7bff836d2cbc7796386899de0a45e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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