fix(application): reduce docker stop timeout from 30 to 10 seconds for improved application shutdown efficiency

This commit is contained in:
Andras Bacsai 2025-09-28 23:11:58 +02:00
parent 810ba3dd9e
commit cd2d4070d3

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=30 $containerName",
"docker stop --time=10 $containerName",
"docker rm -f $containerName",
], server: $server, throwError: false);
}