Skip to content

Instantly share code, notes, and snippets.

@pevd950
Last active October 28, 2022 14:44
Show Gist options
  • Select an option

  • Save pevd950/2725868f27684fb34d5c970bfe64022b to your computer and use it in GitHub Desktop.

Select an option

Save pevd950/2725868f27684fb34d5c970bfe64022b to your computer and use it in GitHub Desktop.
Delete all docker images
images=$(docker ps -a)
if [ -n "$images" ]; then
docker rm $(docker ps -a -q)
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment