Skip to content

Instantly share code, notes, and snippets.

@sagarjauhari
Created May 18, 2019 23:48
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 sagarjauhari/82a4d064a4f917c5dc43d426651d45d7 to your computer and use it in GitHub Desktop.
Save sagarjauhari/82a4d064a4f917c5dc43d426651d45d7 to your computer and use it in GitHub Desktop.
Docker aliases
# Show live stats
alias ds='while true; do TEXT=$(docker stats --no-stream $(docker ps --format "{{.Names}}")); sleep 0.1; clear; echo "$TEXT"; done'
# Kill all containers
alias dk='docker kill $(docker ps -q)'
# Docker compose
alias dc='docker-compose'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment