fix(application): increase docker stop timeout from 10 to 30 seconds for better application shutdown handling
This commit is contained in:
parent
c98266c09d
commit
a8bdc3bbfe
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=10 $containerName",
|
||||
"docker stop --time=30 $containerName",
|
||||
"docker rm -f $containerName",
|
||||
], server: $server, throwError: false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue