Skip to content

Instantly share code, notes, and snippets.

@sergiosvieira
Last active August 19, 2020 15:59
Show Gist options
  • Select an option

  • Save sergiosvieira/590a35188edbe5853ae1a237e4c95a7c to your computer and use it in GitHub Desktop.

Select an option

Save sergiosvieira/590a35188edbe5853ae1a237e4c95a7c to your computer and use it in GitHub Desktop.
Remove all docker containers
for d in $(docker ps -a | grep "[0-9a-z]" | cut -f1 -d" "); do docker rm $d; done
grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment