docker --rm code example
Example 1: remove docker container
docker ps -aq
docker stop $(docker ps -aq)
docker rm $(docker ps -aq)
docker rmi $(docker images -q)
Example 2: docker remove all containers
docker rm $(docker ps -a -q)
Example 3: remove stopped containers
$ docker rm $(docker ps -a -q)
Example 4: docker force remove container
docker rm -f [containerid]
Example 5: 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>
Example 6: how to remove a docker container
docker container rm [container id]