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
When using the OSCAL Editor in the all-in-one Docker environment, saving any changes causes the file permissions to change to -rw-r--r--, making it so that the user within Docker is the only user with write permissions.
Implementation Notes
I'm assuming that this is an issue with the "save" feature of the REST service itself, but it could very well be an issue with Docker configuration.
The text was updated successfully, but these errors were encountered:
But as far as the owning user changing, that's 100% expected behavior as far as I'm concerned. The container is running "rootless" (in a user namespace) and the user is a non-zero UID. So when that user performs a write operation, it should in fact perform the write as that user.
When using the OSCAL Editor in the all-in-one Docker environment, saving any changes causes the file permissions to change to
-rw-r--r--
, making it so that the user within Docker is the only user with write permissions.Implementation Notes
I'm assuming that this is an issue with the "save" feature of the REST service itself, but it could very well be an issue with Docker configuration.
The text was updated successfully, but these errors were encountered: