In this WhaleDeck Shorts, I answer the question of How to remove all exited Docker containers at once. The answer is quite simple.
The answer is quite simple. The following command shows how to remove all containers with state exited.
docker rm $(docker ps -a -q -f status=exited)