docker stop container code example
Example 1: docker remove all containers
docker rm $(docker ps -a -q)
Example 2: stop docker container
//Check if the container is running
docker ps -a
docker container stop {container-id}
Example 3: docker remove container
//Check if the container is running
docker ps -a
//stop the container
docker stop <container_id>
//remove the container
docker rm <container_id>