Would you consider adding the possibility to add UMASK + USER_ID + GROUP_ID as environment variables to the docker image?
A sub question - can I use the "--def exec" option in the docker image? I have tried it but cannot seem to get it to work
I added:
...
--def
"exec=chmod -R 775 '/volume1/folder' ; chown -R userID:groupID '/volume1/folder'"
....
to the bottom of the tasks file - but I must have a syntax error because it does not seem to do the trick
I'm neither a docker nor a Linux expert (by faaaar) - so updating the repo is probably going to break something somewhere - but challenge accepted
My first step - I found a workaround, executing a "umask 0000" in the container seems to do the trick - no I just need to figure out how to pass the variable and run the script at startup, what could possible go wrong
ltb76 wrote: ↑23 Jun 2021, 15:49 I'm neither a docker nor a Linux expert (by faaaar) - so updating the repo is probably going to break something somewhere - but challenge accepted
My first step - I found a workaround, executing a "umask 0000" in the container seems to do the trick - no I just need to figure out how to pass the variable and run the script at startup, what could possible go wrong