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
For removing a single container
docker rm -f CONTAINER_ID
For removing all containers
docker rm -f `docker container ps -qa`