fix(application): reduce docker stop timeout from 30 to 10 seconds for improved application shutdown efficiency
This commit is contained in:
parent
810ba3dd9e
commit
cd2d4070d3
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue