Is there any command which can combine the docker stop and docker rm command together ? Each time I want to delete a running container, I need to execu
docker stop
docker rm
Remove all containers: docker ps -aq | xargs docker rm -f
docker ps -aq | xargs docker rm -f