How to import .jsrexport in docker run execution
-
I have an exported file "template.jsrexport" created by someone else from another jsreport, is there any way to import the file directly when running a new docker run ??
-
Try something like this
docker run -v /c/temp/myexport.jsrexport:/app/myexport.jsrexport -p 5488:5488 jsreport/jsreport:4.2.0 sh -c "jsreport import myexport.jsrexport && node server.js"