What is the fastest way to stop Docker container? This one is a one liner, actually two liner ...First we will stop all docker containers and we will remove them 😁
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
What is the fastest way to stop Docker container? This one is a one liner, actually two liner ...First we will stop all docker containers and we will remove them 😁
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)