remove all volumes docker code example

Example 1: remove docker volume

docker-compose down
docker rm -f $(docker ps -a -q)
docker volume rm $(docker volume ls -q)
docker-compose up -d

Example 2: delete volumes docker

# Procedure
# 1- Stop the container(s) using the following command:
docker-compose down
# 2- Delete all containers using the following command:
docker rm -f $(docker ps -a -q)
# 3-Delete all volumes using the following command:
docker volume rm $(docker volume ls -q)
# 4-Restart the containers using the following command:
docker-compose up -d

Example 3: remove all unused volumes docker

docker volume prune

Example 4: docker remove all volume

docker volume rm $(docker volume ls -q)

Example 5: remove all unused volumes docker

$ docker volume prune

WARNING! This will remove all local volumes not used by at least one container.
Are you sure you want to continue? [y/N] y
Deleted Volumes:
07c7bdf3e34ab76d921894c2b834f073721fccfbbcba792aa7648e3a7a664c2e
my-named-vol

Total reclaimed space: 36 B

Tags:

Misc Example