--
You received this message because you are subscribed to the Google Groups "wisemapping-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wisemapping-sup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wisemapping-support/aeced65f-4eab-40f2-9be2-3c8770174c9fn%40googlegroups.com.
Only one time, copy the empty default out of the container:
$ mkdir your- db-dir-store-path
$ docker run --name wiseapp -d --mount type=bind,source=your-db-dir-store-path,target=/var/lib/wise-db wisemapping/wisemapping:latest
$ docker cp wiseapp:/var/lib/wisemapping/db your-db-dir-store-path
$ docker stop wiseapp;docker rm wiseapp
Then, execute the container mounting tbe directory:
$ docker run --mount type=bind,source=your-db-dir-store-path/db,target=/var/lib/wisemapping/db -it --rm -p 8080:8080 wisemapping/wisemapping:latest