- PUID=1234
- PGID=56789
So this should cause file created (artworks, folder, etc...) on the host created / updated by this user id.
For now, all is created under "root" user.
As I understand they have a "abc" user into their image, and they update the UID and GID on startup of the container.
Something like this :
Code: Select all
#update foo user/group
usermod -u 2005 foo
groupmod -g 3000 foo
#update user/group of previous user/group ids
find /data -group 2000 -exec chgrp -h foo {} \;
find /data -user 1005 -exec chown -h foo {} \;

