Docker sucks with user management. I installed them all on bare metal each one on its own user. They all belong to a common "media" group and inset 750 as umask.
Its a bad bad idea to have 777 files and folders lying around, don't do it.
1. Posts must be related to the discussion of digital piracy
2. Don't request invites, trade, sell, or self-promote
3. Don't request or link to specific pirated titles, including DMs
4. Don't submit low-quality posts, be entitled, or harass others
📜 c/Piracy Wiki (Community Edition):
💰 Please help cover server costs.
Ko-fi | Liberapay |
Docker sucks with user management. I installed them all on bare metal each one on its own user. They all belong to a common "media" group and inset 750 as umask.
Its a bad bad idea to have 777 files and folders lying around, don't do it.
I am not using docker, but I solved the permission issues by running them under the same user.
Not sure I follow what the issue is, it sounds like permissions are working as expected. If you want your normal user account to have permissions you can create a group with ID of 1000 in the host OS, add your user to that group, and set permission to 770.
Try the chown command again with the -R flag to make it recursive, thereby granting ownership of all subdirectories as well.
Something like
sudo chown -R 1000:1000
I already did that but nothing changed, stillthankqs for the input!