Changed docker --time command to -t since --time is deprecated on v28

This commit is contained in:
ShadowArcanist
2025-10-09 13:26:10 +05:30
parent 503da6da21
commit b39690dfa2
8 changed files with 8 additions and 8 deletions

View File

@@ -49,7 +49,7 @@ class StopDatabase
{
$server = $database->destination->server;
instant_remote_process(command: [
"docker stop --time=$timeout $containerName",
"docker stop -t $timeout $containerName",
"docker rm -f $containerName",
], server: $server, throwError: false);
}