Skip to content

Instantly share code, notes, and snippets.

@mvsde
Last active August 20, 2018 05:11
Show Gist options
  • Select an option

  • Save mvsde/efe03cfcb3723c5a8020d4c825a9477d to your computer and use it in GitHub Desktop.

Select an option

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