In docker-compose.yml there are two services. Those get the image from a repository.
The first time the services are started with docker-compose up -d
. It worked good and after some time the images were stopped because of Docker update and restart.
Then with docker start
only one of the images was started. It worked good and after another update and restart(months later), docker-compose up -d
is executed. In this case the manually started service previously was recreated and data was lost. First, can this be recovered, and second, is this expected?
Thanks