You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am getting error on aks. Is there any workaorund for it?
Error: failed to create containerd container: rootpath on mountPath C:\Windows\SystemTemp\ctd-volume2059323837, volume c:\jsreport: CreateFile C:\Windows\SystemTemp\ctd-volume2059323837\c:: The filename, directory name, or volume label syntax is incorrect.
I am hosting nodejs app on windows node, repeatedly getting above.
Dockerfile-
FROM jsreport/jsreport:4.7.0-windowsservercore
WORKDIR /app
COPY .npmrc ./
COPY package.json ./
COPY /shared/customStudioAuthentication.js /app/node_modules/@jsreport/jsreport-authentication/lib/main.js
RUN npm install
COPY . ./
EXPOSE 5488
USER ContainerAdministrator # Or create a custom user as necessary
CMD ["node", "server.js"]
Hey, I had a quick look at this and my initial guess is that the mountPath in your YAML file is incorrect.
Try using /c/jsReport and /c/windows/SystemTemp instead of c:\jsReport and c:\windows\SystemTemp
From memory, "" is a special character in YAML. So if the /c/... approach doesn't work, then try enclosing the mountPath in quotes and escaping it. Like this:
Describe the bug
I am getting error on aks. Is there any workaorund for it?
Error: failed to create containerd container: rootpath on mountPath C:\Windows\SystemTemp\ctd-volume2059323837, volume c:\jsreport: CreateFile C:\Windows\SystemTemp\ctd-volume2059323837\c:: The filename, directory name, or volume label syntax is incorrect.
I am hosting nodejs app on windows node, repeatedly getting above.
Dockerfile-
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: