From 1fbb4070ab726ed18b595957bdf21dd1f81f812e Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 26 Jul 2023 12:40:24 +0200 Subject: [PATCH] Set the correct permissions to the storage directory --- docker/php-fpm/start-container | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/php-fpm/start-container b/docker/php-fpm/start-container index c6803fa5..6f397ac5 100644 --- a/docker/php-fpm/start-container +++ b/docker/php-fpm/start-container @@ -1,5 +1,8 @@ #!/bin/bash +echo "➜ Set correct permissions" +chmod -R 777 storage + echo "➜ Install Composer Dependencies" composer install