Skip to content

Instantly share code, notes, and snippets.

@phoet
Created January 16, 2015 13:43
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save phoet/b8a6b2cc400b2c43ad6b to your computer and use it in GitHub Desktop.
docker-shell-alias-function
function docker {
cmd=/usr/local/bin/docker
case $1 in
"status") shift && $cmd ps $@;;
*) $cmd $@;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment