From c2265a155dd15ee6467a4189fe92656d2be51850 Mon Sep 17 00:00:00 2001 From: husanjon Date: Mon, 6 Apr 2026 06:39:16 +0500 Subject: [PATCH] Fix entrypoint: remove set -e so php-fpm always starts Co-Authored-By: Claude Sonnet 4.6 --- _docker/app/entrypoint.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/_docker/app/entrypoint.sh b/_docker/app/entrypoint.sh index 606d691..43444dc 100644 --- a/_docker/app/entrypoint.sh +++ b/_docker/app/entrypoint.sh @@ -1,14 +1,11 @@ #!/bin/sh -set -e cd /var/www -# Create storage:link if not exists -if [ ! -L /var/www/public/storage ]; then - php artisan storage:link --force -fi +# Create storage symlink (ignore errors) +php artisan storage:link --force 2>/dev/null || true -# Cache config +# Cache config (ignore errors) php artisan config:cache --no-ansi 2>/dev/null || true exec php-fpm