· Chuck Conway · Infrastructure  · 1 min read

Stop and Remove ALL Docker Containers and Images

This is shamelessly stolen from The Humble Developer.

This is shamelessly stolen from The Humble Developer.

This is shamelessly stolen from The Humble Developer.

List All Containers

docker ps -a

Stop All Running Containers

docker stop $(docker ps -aq)

Remove All Containers

docker rm $(docker ps -aq)

Remove All Images

docker rmi $(docker images -q)
Share:
Back to Blog

Related Posts

View All Posts »