fix(deploy): restart SSR after build to pick up new SSR bundle

This commit is contained in:
F4ilji
2026-08-31 20:14:55 +05:00
parent 774de4a6ab
commit 36c122cf65
Vendored
+1 -1
View File
@@ -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
'''
}