I have tried out a docker image using the docker command line without specifying names for volumes. Now I found that I want to continue using this container/image but by defining the container in docker compose.
What is best practice for keeping the data from the anonymous/unnamed volumes and use them in the new container created by docker compose?
- Can I somehow convert the unnamed into named volumes?
- or should I create a new container with docker compose with named volumes and copy the data?
- or any other option?