Skip to content

Instantly share code, notes, and snippets.

@klihelp
Created November 8, 2018 12:57
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 klihelp/ae048e2b770543d81e5869f3556c21ca to your computer and use it in GitHub Desktop.
Save klihelp/ae048e2b770543d81e5869f3556c21ca to your computer and use it in GitHub Desktop.
Docker Pause Toggle
# Toggle paused status for running containers
if [[ $(docker ps -q -f status=paused | wc -l) -gt 0 ]]; then docker unpause $(docker ps -q -f status=paused); else docker pause $(docker ps -q -f status=running); fi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment