Skip to content

Instantly share code, notes, and snippets.

@Oleksii909
Created December 4, 2020 01:05
Show Gist options
  • Save Oleksii909/5a6093fb6d7e522a8b34eb195032f561 to your computer and use it in GitHub Desktop.
Save Oleksii909/5a6093fb6d7e522a8b34eb195032f561 to your computer and use it in GitHub Desktop.
Remove all docker containers

stop all containers: docker kill $(docker ps -q)

remove all containers docker rm $(docker ps -a -q)

remove all docker images docker rmi $(docker images -q)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment