全てのコンテナを停止

docker kill $(docker ps -q)

全てのコンテナを削除

docker rm $(docker ps -a -q)

全てのイメージを削除

docker rmi $(docker images -q)