From 36c122cf65e3ab7174f2680c7c342cbcc9344e53 Mon Sep 17 00:00:00 2001 From: F4ilji Date: Mon, 31 Aug 2026 20:14:55 +0500 Subject: [PATCH] fix(deploy): restart SSR after build to pick up new SSR bundle --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c4884b0..b715184 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -124,10 +124,10 @@ pipeline { steps { dir("${APP_DIR}") { sh ''' - docker exec ntspi-php php artisan inertia:stop-ssr || true docker restart ntspi-nginx ntspi-php ntspi-php-queue sleep 5 docker exec ntspi-php php artisan inertia:stop-ssr || true + sleep 2 docker exec ntspi-php php artisan inertia:start-ssr || true ''' }