Skip to content
Snippets Groups Projects
Commit 8bfee9cf authored by jurgenhaas's avatar jurgenhaas
Browse files

#22 Properly set permissions

parent 94cab9c8
No related branches found
Tags v1.1.1
No related merge requests found
Pipeline #
...@@ -380,5 +380,5 @@ For more details we recommend the following links: ...@@ -380,5 +380,5 @@ For more details we recommend the following links:
- [Documentation](https://docs.docker.com/compose) - [Documentation](https://docs.docker.com/compose)
- Docker4Drupal - Docker4Drupal
- [Home](https://github.com/wodby/docker4drupal) - [Home](https://github.com/wodby/docker4drupal)
- [Documentation](http://docs.docker4drupal.org/en/latest) - [Documentation](https://wodby.com/stacks/drupal/docs/local)
- [Wodby](https://wodby.com) - [Wodby](https://wodby.com)
...@@ -194,6 +194,10 @@ class Handler { ...@@ -194,6 +194,10 @@ class Handler {
$traefik = new Traefik($options['projectname']); $traefik = new Traefik($options['projectname']);
$traefik->update(); $traefik->update();
// Set permissions, see https://wodby.com/stacks/drupal/docs/local/permissions
exec('setfacl -dR -m u:$(whoami):rwX -m u:82:rwX -m u:100:rX' . $projectRoot);
exec('setfacl -R -m u:$(whoami):rwX -m u:82:rwX -m u:100:rX' . $projectRoot);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment