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
Alongside my pulp development repos I have a directory of various RPM repos - despite not being referenced in the configuration at all, I get the following error when I try to start the environment:
Error: unable to start container aedae1b7800720aeb9bc1053adbb782a422875db8ea2a767078d395c30bc6fb0: lsetxattr /home/dalley/devel/repos: operation not permitted
I'm guessing it wants to recursively make everything under ~/devel available inside the container but doesn't like the permissions on that one directory?
It appears a while back I made it owned by the nginx user to make it easy to symlink to /usr/share/nginx/html/ or something.
Alongside my pulp development repos I have a directory of various RPM repos - despite not being referenced in the configuration at all, I get the following error when I try to start the environment:
I'm guessing it wants to recursively make everything under
~/devel
available inside the container but doesn't like the permissions on that one directory?It appears a while back I made it owned by the nginx user to make it easy to symlink to
/usr/share/nginx/html/
or something.You can see it has permissions 777 so any user can read it.
After using
chown
andchgrp
on this directory with my own user it all works so this isn't a critical issue, just nice to address if possible.The text was updated successfully, but these errors were encountered: