Skip to content

Instantly share code, notes, and snippets.

@mvsde
Last active August 20, 2018 05:11
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 mvsde/efe03cfcb3723c5a8020d4c825a9477d to your computer and use it in GitHub Desktop.
Save mvsde/efe03cfcb3723c5a8020d4c825a9477d to your computer and use it in GitHub Desktop.
Stop Docker auto restart on all containers
# Source:
# https://github.com/moby/moby/issues/10032#issuecomment-310023443
docker stop $(docker ps -a -q) & docker update --restart=no $(docker ps -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment