fix: update docker stop command to use --time instead of --timeout

This commit is contained in:
Andras Bacsai
2025-11-05 08:48:10 +01:00
parent bc3deeed03
commit 5b79844a3a
9 changed files with 9 additions and 9 deletions

View File

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