Answers for "docker compose remove all"

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 container

//Check if the container is running
docker ps -a

//stop the container
docker stop <container_id>

//remove the container
docker rm <container_id>
Posted by: Guest on April-28-2020

Code answers related to "docker compose remove all"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language