I had a mysql docker container. I have run it with following command:
docker run --name=dockername -p 3306:3306 -d mysql/mysql-server:latest
As you can see, I didnot mention any volume, so it was default volume.
After facing some restarting issue, I removed docker container with
docker rm dockername
I didnot remove the volume directly with -v command. Now the previous container is removed and I have run a new container with docker-compose. But need those previous data.
Is it possible to get those data as sql file?