From 8396bddcf332eebc36ef6d04dbd113f835ff44f9 Mon Sep 17 00:00:00 2001 From: soeren Date: Fri, 5 Dec 2025 20:44:51 +0100 Subject: [PATCH] fixes --- docker-compose.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9c35170..035c06d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,10 @@ services: restart: unless-stopped command: > sh -c " - mkdir -p storage/app/public storage/logs storage/framework/{cache,data,sessions,testing,views} bootstrap/cache && + mkdir -p storage/app/public storage/logs \ + storage/framework/cache storage/framework/data storage/framework/sessions \ + storage/framework/testing storage/framework/views \ + bootstrap/cache && chown -R www-data:www-data storage storage/app storage/framework storage/logs bootstrap/cache && php artisan package:discover --ansi && php artisan storage:link --ansi || true && @@ -52,7 +55,10 @@ services: restart: unless-stopped command: > sh -c " - mkdir -p storage/app/public storage/logs storage/framework/{cache,data,sessions,testing,views} bootstrap/cache && + mkdir -p storage/app/public storage/logs \ + storage/framework/cache storage/framework/data storage/framework/sessions \ + storage/framework/testing storage/framework/views \ + bootstrap/cache && chown -R www-data:www-data storage storage/app storage/framework storage/logs bootstrap/cache && php artisan queue:work --sleep=3 --tries=3 --max-time=3600 " @@ -76,7 +82,10 @@ services: restart: unless-stopped command: > sh -c " - mkdir -p storage/app/public storage/logs storage/framework/{cache,data,sessions,testing,views} bootstrap/cache && + mkdir -p storage/app/public storage/logs \ + storage/framework/cache storage/framework/data storage/framework/sessions \ + storage/framework/testing storage/framework/views \ + bootstrap/cache && chown -R www-data:www-data storage storage/app storage/framework storage/logs bootstrap/cache && php artisan schedule:work "