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

@@ -153,7 +153,7 @@ class DeleteResourceJob implements ShouldBeEncrypted, ShouldQueue
$containerList = implode(' ', array_map('escapeshellarg', $containerNames));
$commands = [
"docker stop --time=$timeout $containerList",
"docker stop -t $timeout $containerList",
"docker rm -f $containerList",
];