schoenf
1
My logs overflow with this error message:
file_exists(): open_basedir restriction in effect. File(/.dockerenv) is not within the allowed path(s): (/home/web1/:/usr/lib64/php)
I have a single installation without Docker. How can I solve this problem without granting root access via open_basedir?
Greetings,
Jochen
fox
2
there’s no point in having open_basedir enabled within a docker container, which is why stock compose setup has it disabled. you also break half-break curl for no good reason.
thus, whatever you’re using is unsupported, so everything is working as intended, as far as i’m concerned.
schoenf
3
Okay. Thank you for your help. I have commented out this part in the code and the error is gone.
fox
4