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
It's not the problem with the "509" as you said (it's 0775 in octal), it's a problem with your filesystem and permissions on your folders. You need to correct them yourself.
What steps will reproduce the problem?
When creating a log file, it cannot create a directory with the file.
Permission mode = 509(dec)
chmod() does not understand dec formats
Stacktrace:
What is the expected result?
Use the native decoct() function to convert to the desired permission mode.
What do you get instead?
Correct work with directories and permission mode.
Additional info
updated: 02-27-2023
Fix:
For dockerfile, example:
RUN apk add -U shadow
ARG user_id=1000
RUN usermod -u $user_id www-data
The text was updated successfully, but these errors were encountered: