Answers for "remove all volumes docker"

7

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
Posted by: Guest on January-15-2021
5

remove docker volume

docker-compose down
docker rm -f $(docker ps -a -q)
docker volume rm $(docker volume ls -q)
docker-compose up -d
Posted by: Guest on July-14-2020
3

docker remove all volume

docker volume rm $(docker volume ls -q)
Posted by: Guest on June-25-2020
0

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
Posted by: Guest on February-23-2021

Code answers related to "remove all volumes docker"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language