Skip to content

Instantly share code, notes, and snippets.

@1franck
Created February 25, 2023 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1franck/1613d24c998ed71d8fee6b10465ee188 to your computer and use it in GitHub Desktop.
Save 1franck/1613d24c998ed71d8fee6b10465ee188 to your computer and use it in GitHub Desktop.
powershell profile aliases
Set-Alias ll ls
Set-Alias dc docker-compose
Set-Alias dcu dockerComposeUp
Set-Alias dcd dockerComposeDown
Set-Alias gfp gitFetchPull
function dockerComposeUp {
docker-compose up -d
}
function dockerComposeDown {
docker-compose down
}
function gitFetchPull {
git fetch -p && git pull
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment