fix(application): increase docker stop timeout from 10 to 30 seconds for better application shutdown handling

This commit is contained in:
Andras Bacsai 2025-09-29 12:16:13 +02:00
parent c98266c09d
commit a8bdc3bbfe

View file

@ -39,7 +39,7 @@ public function handle(Application $application, bool $previewDeployments = fals
foreach ($containersToStop as $containerName) {
instant_remote_process(command: [
"docker stop --time=10 $containerName",
"docker stop --time=30 $containerName",
"docker rm -f $containerName",
], server: $server, throwError: false);
}