Implement the following snippet into the makefile:
sudo setfacl -Rm g:82:rwX,d:g:82:rwX path/to/dir
sudo setfacl -Rm g:MYUSER:rwX,d:g:MYUSER:rwX path/to/dir
Check this other alternative:
sudo setfacl -dR -m u:$(whoami):rwX -m u:21:rX -m u:82:rwX path_to_shared_volume
sudo setfacl -R -m u:$(whoami):rwX -m u:21:rX -m u:82:rwX path_to_shared_volume
Implement the following snippet into the makefile:
sudo setfacl -Rm g:82:rwX,d:g:82:rwX path/to/dir
sudo setfacl -Rm g:MYUSER:rwX,d:g:MYUSER:rwX path/to/dir
Check this other alternative:
sudo setfacl -dR -m u:$(whoami):rwX -m u:21:rX -m u:82:rwX path_to_shared_volume
sudo setfacl -R -m u:$(whoami):rwX -m u:21:rX -m u:82:rwX path_to_shared_volume