I'm trying to develope Plone project with Docker, i have used this official image of Plone 5.2.0, the images is built a run perfectly with:
$ docker build -t plone-5.2.0-official-img .
$ docker run -p 8080:8080 -it plone-5.2.0-official-cntr
But the plone restarts each time i run the docker container asking to create the project from skratch.
Anybody could help me with this. Thanks in advance.

This is expected behavior, because
docker runstarts a new container, which doesn't have the state from your previous container.You can use
docker start CONTAINER, which will have the state from thatCONTAINER's setup https://docs.docker.com/engine/reference/commandline/start/A more common approach is to use
docker-compose.ymlanddocker-compose up -d, which will, in most cases, reuse previous state. https://docs.docker.com/compose/gettingstarted/