Last active
March 31, 2023 09:46
-
-
Save vallerion/f47912184a7a174a4f604269c4a04aa0 to your computer and use it in GitHub Desktop.
Revisions
-
vallerion revised this gist
Feb 26, 2023 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,8 +5,12 @@ alias gc='git commit -am' alias gs='git status' alias gph='git push' alias gpl='git pull' alias kx='kubectl ctx' alias kn='kubectl ns' // or alias kx='kubectx' alias kn='kubens' alias php71='docker run -u $UID -it --rm -v "$PWD":/code -w /code php:7.1-cli php' alias composer='docker run --rm --interactive --tty -v "$PWD":/code -v ~/.ssh/:/root/.ssh -w /code composer:latest' -
vallerion revised this gist
Aug 8, 2022 . 1 changed file with 6 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,13 @@ alias ls='ls -lGFh' alias la='ls -la' alias gc='git commit -am' alias gs='git status' alias gph='git push' alias gpl='git pull' alias kx='kubectl ctx' alias kn='kubectl ns' alias php71='docker run -u $UID -it --rm -v "$PWD":/code -w /code php:7.1-cli php' alias composer='docker run --rm --interactive --tty -v "$PWD":/code -v ~/.ssh/:/root/.ssh -w /code composer:latest' alias node='docker run -it --rm -v "$PWD":/code -w /code node:latest' -
vallerion revised this gist
Feb 18, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ alias ls='ls -lGFh' alias la='ls -la' alias php='docker run -u $UID -it --rm -v "$PWD":/code -w /code php:7.1-cli php' alias composer='docker run --rm --interactive --tty -v "$PWD":/code -v ~/.ssh/:/root/.ssh -w /code composer:latest' alias gc='git commit -am' alias gs='git status' alias gph='git push' -
Valeriy created this gist
Nov 29, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ alias ls='ls -lGFh' alias la='ls -la' alias php='docker run -u $UID -it --rm -v "$PWD":/code -w /code php:7.1-cli php' alias composer='docker run --rm --interactive --tty -v "$PWD":/code -v ~/.ssh/:/root/.ssh -w /code composer' alias gc='git commit -am' alias gs='git status' alias gph='git push' alias gpl='git pull' alias ruby='docker run -u $UID -it --rm -v "$PWD":/code -w /code ruby:2.4 ruby' alias cruby='docker run -it --rm -v "$PWD":/code -w /code ruby:2.4 bash' alias node='docker run -it --rm -v "$PWD":/code -w /code node'