Last active
November 16, 2017 14:11
-
-
Save lincolnbrito/df0ec24e84f93b379dfccbc603cf3ba7 to your computer and use it in GitHub Desktop.
Create a Docker alias in Git Bash Windows
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
alias vue='docker run -it --rm -v "/$PWD:/var/www/app" ambientum/vue-cli vue' | |
alias node='docker run -it --rm -v "/$PWD:/home" -w=//home node:slim node' | |
alias npm='docker run -it --rm -v "/$PWD:/home" -w=//home node:slim npm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment