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

@@ -39,7 +39,7 @@ class StopApplication
foreach ($containersToStop as $containerName) {
instant_remote_process(command: [
"docker stop --time=30 $containerName",
"docker stop -t 30 $containerName",
"docker rm -f $containerName",
], server: $server, throwError: false);
}