I used to build the development environment with Docker + docker-compose, but when I recreated the environment, it stopped working, so make a note.
--Delete container with docker-compose down --Delete image with docker rmi --Recreate container with docker-compose up
I didn't specify the version of the container image and it stopped working because the image pulled by latest was updated.
Let's specify the image version properly when creating a docker container
Recommended Posts