docker stop $(docker ps -qa) && docker rm $(docker ps -qa) && docker rmi -f $(docker images -qa) && docker volume rm $(docker volume ls -q) && docker network rm $(docker network ls -q)
docker stop $(docker ps -qa)
docker rm $(docker ps -qa)
docker rmi -f $(docker images -qa)
docker volume rm $(docker volume ls -q)
docker network rm $(docker network ls -q)
Ваша инсталяция должна быть чиста 😊
docker ps -a
docker images -a
docker volume ls
docker network ls
docker system prune
@shert391
The documentation says that there is a delete command, but there is no delete all command. Based on this, you will first have to find IDs, and then delete everything by ID or IDs
But you can delete all by network name (not by ids in my example)