docker system prune You can batch delete dead containers, untagged images, unused volumes, and unused networks. docker container prune You can delete stopped containers in bulk. docker image prune You can delete unused images at once. docker volume prune You can delete unused volumes at once docker network prune You can delete unused networks in bulk
docker-compose up -d workspace php-fpm nginx postgres I got the following error, but I was able to solve it by erasing the existing container and image. You can delete things in docker with the above command.
Recommended Posts