how to stop all the running docker containers code example
Example 1: docker stop all containers
docker stop $(docker ps -a -q)
Example 2: remove all containers docker
docker rm $(docker ps -aq)
Example 3: how to stop docker
systemctl stop docker.service
#(OR)
systemctl stop docker
# it will start docker