Skip to content

Instantly share code, notes, and snippets.

@dszymczuk
Created July 15, 2016 07:00
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 dszymczuk/dc883399face7e10e448e54881204628 to your computer and use it in GitHub Desktop.
Save dszymczuk/dc883399face7e10e448e54881204628 to your computer and use it in GitHub Desktop.
Usefull aliases for Docker
# add to .bashrc or .bash_profile
alias dockerCleanExited='docker rm $(docker ps --all -q -f status=exited)'
alias dockerStopAll='docker stop $(docker ps -q)'
alias dockerStartAll='docker start $(docker ps --all -q -f status=exited)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment