Created
July 19, 2018 02:36
-
-
Save MatthieuScarset/8863c5f817b3db9ccf1981294c86a6a9 to your computer and use it in GitHub Desktop.
Fix permissions on Docker-based env with Drupal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Files should be `644` I think | |
find . -type f -exec chmod u=rw,g=r,o=r {} \; | |
// Folders should be `executable | |
find . -type d -exec chmod u=rwx,g=rx,o=rx {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment