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
At startup, the container modifies some files in /service/api/build/static/webapp.
On Kubernetes/OpenShift these folder are in read only mode ( stateless container approach).
A quick and dirty solution is to add this command in the image:
RUN chmod -R a+rwX /service/api/build/static/webapp
Describe the solution you'd like
The image should be fully operational at startup without requiring a build phase.
This issue might be related to #9141 and could potentially be resolved using a multi-stage build process.
The text was updated successfully, but these errors were encountered:
It was my understanding that our images either bind mount key points they need to write to or are otherwise immutable and ok to reboot with 100% data loss of the non persistent data.
At startup, the container modifies some files in
/service/api/build/static/webapp
.On Kubernetes/OpenShift these folder are in read only mode ( stateless container approach).
A quick and dirty solution is to add this command in the image:
Describe the solution you'd like
The image should be fully operational at startup without requiring a build phase.
This issue might be related to #9141 and could potentially be resolved using a multi-stage build process.
The text was updated successfully, but these errors were encountered: