Skip to content

Instantly share code, notes, and snippets.

@naveenkumarmarri
Created September 16, 2021 01:05
Show Gist options
  • Save naveenkumarmarri/54f6d8bc833ebea351cc4fc2cdea0c8f to your computer and use it in GitHub Desktop.
Save naveenkumarmarri/54f6d8bc833ebea351cc4fc2cdea0c8f to your computer and use it in GitHub Desktop.
Nuke docker images

Removes all docker images, networks and volumes

docker rm $(docker ps -a -q) --force || true \
	&& docker container prune --force \
	&& docker volume prune --force \
	&& docker network prune --force \
	&& docker image prune -a --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment