remove all containers and images docker code example

Example 1: stop all container in docker

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)

Example 2: 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 3: delete all docker images

docker system prune -a

Example 4: docker remove all containers and images

docker container rm $(docker container ls -aq)

Example 5: docker remove all containers and images

docker container stop $(docker container ls -aq)

Example 6: docker remove dangling images

docker image prune

Tags:

C Example