fix(docker): replace deprecated --time flag with -t for full compatibility across Docker versions (#6807)

This commit is contained in:
Andras Bacsai
2025-11-28 10:47:19 +01:00
committed by GitHub
8 changed files with 8 additions and 8 deletions

View File

@@ -3143,7 +3143,7 @@ COPY ./nginx.conf /etc/nginx/conf.d/default.conf");
try {
$timeout = isDev() ? 1 : 30;
$this->execute_remote_command(
["docker stop --time=$timeout $containerName", 'hidden' => true, 'ignore_errors' => true],
["docker stop -t $timeout $containerName", 'hidden' => true, 'ignore_errors' => true],
["docker rm -f $containerName", 'hidden' => true, 'ignore_errors' => true]
);
} catch (Exception $error) {