Skip to content

Instantly share code, notes, and snippets.

@ashutoshsahoo
Last active February 5, 2022 04:28
Show Gist options
  • Save ashutoshsahoo/1adf53794c89a6e09cbf71825277610c to your computer and use it in GitHub Desktop.
Save ashutoshsahoo/1adf53794c89a6e09cbf71825277610c to your computer and use it in GitHub Desktop.
Docker commands
  • Stop all containers:

docker stop $(docker ps -a -q)

  • Remove all containers:

docker rm $(docker ps -a -q)

  • Remove <none> images:

docker rmi $(docker images -f "dangling=true" -q)

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