-
|
After fixing Moltis not discovering docker at all (see other discussion), I now run into the issue that Chrome in the browserless container doesn't start because it cannot write profile data into the folder due to permission issues. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Based on what AI told me to do, I found that the following seems to fix the access permission issues: It sets an ACL so that the user with ID 999 (used for Chrome in the browserless container) is given the proper permissions for all folders created in the path. |
Beta Was this translation helpful? Give feedback.
-
|
I had the same problem on a fresh installation. So far I could not solve it, but is a |
Beta Was this translation helpful? Give feedback.
-
|
Fixed in main. |
Beta Was this translation helpful? Give feedback.
Based on what AI told me to do, I found that the following seems to fix the access permission issues:
sudo setfacl -R -d -m u:999:rwx /path/to/moltis/browser/folder/It sets an ACL so that the user with ID 999 (used for Chrome in the browserless container) is given the proper permissions for all folders created in the path.
Seems to have helped so far...