Friday, March 25, 2022

Remove all docker images with initials of image name

docker images
docker rmi $(docker images | grep 'imagename')

No comments:

Post a Comment

Popular Posts

Most Featured Post

GitHub: Squash all commits in PR

  Command Meaning git fetch origin Get the latest origin/master . git reset --soft origin/master Move your branch to match origin/master , b...