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
On linux, docker creates model file (json) with root owner (because docker creates a virtual computer that has no idea of the user running docker on the host computer).
This makes it a bit more difficult to handle the file afterward.
The known solution to this is copy the file generated to some other location or name (what NexusDockerVerveineJRunner already wants to do) and here the copied file will have the right owner
remove the root owned file (needs "forcing it": rm -f) which is possible if it is in a directory owned by the user (with write rights on it). See also Create 'sources' directory explicitly in Pharo #6
The text was updated successfully, but these errors were encountered:
On linux, docker creates model file (json) with root owner (because docker creates a virtual computer that has no idea of the user running docker on the host computer).
This makes it a bit more difficult to handle the file afterward.
rm -f
) which is possible if it is in a directory owned by the user (with write rights on it). See also Create 'sources' directory explicitly in Pharo #6The text was updated successfully, but these errors were encountered: