Answers for "docker remove container with volumes"

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
3

docker force remove container

docker rm -f [containerid]
Posted by: Guest on May-27-2020
1

remove container and volume docker

docker rm -v container_name
Posted by: Guest on December-17-2020
4

how to remove a docker container

docker container rm [container id]
Posted by: Guest on May-23-2020

Code answers related to "docker remove container with volumes"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language