Skip to content

Instantly share code, notes, and snippets.

@tobias-johansson
Last active March 21, 2016 12:54
Show Gist options
  • Save tobias-johansson/a3f6298454fd5945a2d1 to your computer and use it in GitHub Desktop.
Save tobias-johansson/a3f6298454fd5945a2d1 to your computer and use it in GitHub Desktop.
Docker Aliases
#!/bin/bash
case "$1" in
pss )
exec docker ps --format "table {{.ID}}\t{{.Names}}\t{{.Image}}\t{{.RunningFor}}" ${@:2} ;;
enter )
exec docker exec -ti $2 bash ;;
* )
exec docker $@ ;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment