docker container stop and remove code example

Example 1: remove docker container

# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q)

Example 2: docker remove all containers

docker rm $(docker ps -a -q)

Example 3: docker force remove container

docker rm -f [containerid]

Example 4: how to delete docker containers

docker system prune -a

Example 5: how to remove a docker container

docker container rm [container id]

Example 6: how to stop a container docker

docker stop <ContainerID>