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
Description
Following the steps here and reaching step 4 (make up), php container shows the below error:
2023-06-17 01:12:08 setfacl: var/cache: Not supported 2023-06-17 01:12:08 setfacl: var/log: Not supported
How to reproduce
Using a macOS, execute install steps until step 4.
Go to php container (gally-php) and check the logs.
You'll see the error above.
Possible Solution
On macOS, the file system does not support POSIX Access Control Lists (ACLs) by default. Therefore, the setfacl commands used in api/docker/php/docker-entrypoint.sh, which are commonly used in Linux environments, will not work as expected on macOS.
We can achieve similar results by using the chmod command to set permissions instead.
The text was updated successfully, but these errors were encountered:
Gally Platform version(s) affected: 1.0.x
Description
Following the steps here and reaching step 4 (make up), php container shows the below error:
2023-06-17 01:12:08 setfacl: var/cache: Not supported
2023-06-17 01:12:08 setfacl: var/log: Not supported
How to reproduce
Using a macOS, execute install steps until step 4.
Go to php container (gally-php) and check the logs.
You'll see the error above.
Possible Solution
On macOS, the file system does not support POSIX Access Control Lists (ACLs) by default. Therefore, the setfacl commands used in api/docker/php/docker-entrypoint.sh, which are commonly used in Linux environments, will not work as expected on macOS.
We can achieve similar results by using the chmod command to set permissions instead.
The text was updated successfully, but these errors were encountered: