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
| function dkmee { | |
| # Restart manually NFS (why NFS v3?) due to a bug on docker-machine start | |
| docker-machine ssh local -t sudo mount -v -t nfs -o nfsvers=3 $(docker-machine ip):/Users /Users/ | |
| # Set config for ES | |
| docker-machine ssh local -t sudo sysctl -w vm.max_map_count=362144 | |
| # Update iptables to access container from localhost without expose host port | |
| # https://docs.docker.com/v17.09/engine/userguide/networking/default_network/container-communication/#container-communication-between-hosts | |
| docker-machine ssh local -t sudo iptables -P FORWARD ACCEPT | |
| } |
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
| # | |
| # Aliases | |
| # | |
| # Run Rubocop through Bundler | |
| if (( $+commands[bundle] )); then | |
| alias rbbr='bundle exec rubocop' | |
| fi | |
| # Run Middleman through Bundler |
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
| # | |
| # Aliases | |
| # | |
| # Edit README.md in Vim | |
| if (( $+commands[vi] )); then | |
| alias vir='vi README.md' | |
| fi | |
| # Show README.md in terminal |
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
| # | |
| # Aliases | |
| # | |
| # List all *.orig files in the current directory | |
| if (( $+commands[ls] )); then | |
| alias lso='ls -al **/*.orig' | |
| fi | |
| # Remove all *.orig files from the current directory |
OlderNewer