Skip to main content
Home
badllama.com
  • Search
  • Log In

Docker

bchavet's picture

Mon, 02/29/2016 - 13:36 by bchavet

Prevent containers from starting when Docker starts

This should be run while the docker daemon is stopped

for x in /var/lib/docker/containers/*/config.v2.json; do cp $x $x.bak; cat $x.bak | jq -c '.State.Running = false' > $x; done
Powered by Backdrop CMS