From 4e905200836025531420fb49fa8148f3be8a57a7 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Thu, 27 Dec 2018 12:11:59 +0100
Subject: [PATCH] docker/l3d#4 Set extended file permissions for group

---
 src/Handler.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Handler.php b/src/Handler.php
index f38582a..3f40954 100644
--- a/src/Handler.php
+++ b/src/Handler.php
@@ -143,8 +143,8 @@ class Handler extends BaseHandler {
     $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 . ' >/dev/null 2>&1');
-    exec('setfacl -R -m u:$(whoami):rwX -m u:82:rwX -m u:100:rX ' . $projectRoot . ' >/dev/null 2>&1');
+    exec('setfacl -dR -m u:$(whoami):rwX -m u:82:rwX -m u:100:rX -m g::rwX ' . $projectRoot . ' >/dev/null 2>&1');
+    exec('setfacl -R -m u:$(whoami):rwX -m u:82:rwX -m u:100:rX -m g::rwX ' . $projectRoot . ' >/dev/null 2>&1');
   }
 
   /**
-- 
GitLab