Hi everyone, i have this problem.
FROM jsreport/jsreport:4.5.0
WORKDIR /app
RUN mkdir -p /app/logs && chmod -R 777 /app/logs
COPY templates /app/templates
RUN jsreport import /app/templates/templates.jsrexport
USER root
RUN chown -R root:root /app/templates && chmod -R 755 /app/templates
RUN rm -rf /app/templates
USER jsreport
EXPOSE 5488
I have this dockerfile that runs jsreport with templates . i tested it locally and all works good. . But when i push my container into Azure i had error. . This is Error (Error when cleaning fs journal, no worry, we will run again Timeout during waiting for file system, try it again later. stack=Error: Timeout during waiting for file system, try it again later,Error when syncing fs journal, no worry, we will run again Timeout during waiting for file system, try it again later. stack=Error: Timeout during waiting for file system, try it again later.)After error it use my backup. Where is only 141 temp someone can explain how i can fix it? This inf was wroten by my Git Hub Action
#6 [2/7] WORKDIR /app
#6 DONE 0.0s
#7 [3/7] RUN mkdir -p /app/logs && chmod -R 777 /app/logs
#7 DONE 0.2s
#8 [4/7] COPY templates /app/templates
#8 DONE 0.0s
#9 [5/7] RUN jsreport import /app/templates/templates.jsrexport
#9 3.497 starting import in local instance..
#9 5.384 imported by entitySet: templates 143, data 70, assets 87, scripts 20, folders 84
#9 5.385 total entities imported: 404
#9 5.385 import finished
#9 DONE 5.5s
#10 [6/7] RUN chown -R root:root /app/templates && chmod -R 755 /app/templates
#10 DONE 0.2s
#11 [7/7] RUN rm -rf /app/templates
Who know how to fix it??? Best regrads, Nazar