docker remove everything 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: remove all images docker

docker rmi $(docker images -a -q)

Example 3: docker delete all images

docker system prune

Example 4: docker delete all containers

docker container rm $(docker container ls –aq)
docker container stop $(docker container ls –aq) && docker system prune –af ––volumes

Example 5: docker remov all running containers

docker rm $(docker ps -aq)

Example 6: delete container id

docker rm $(docker ps -a -q)

Tags:

Misc Example