Hi,
I'm using the docker image "geosolutionsit/mapstore2:v2024.01.02-stable" and I'd like the data created by users to remain permanent so that it can be used in other runs.
Below is the command used to run the image:
docker run --name mapstore \
-v ./volume:/usr/local/tomcat/datadir \
-d -p 8080:8080 \
geosolutionsit/mapstore2:v2024.01.02-stable
When creating a user in MapStore, a file is not generated in the volume (/usr/local/tomcat/datadir ).
Which directory should I use in the image to store the data (Map, Dashboard, Users,...) that I create in MapStore ?
docker run --name mapstore \
-v ./volume:[???] \
-d -p 8080:8080 \
geosolutionsit/mapstore2:v2024.01.02-stable
Best Regards,
Luiz Motta