mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-19 17:20:51 +00:00
Changed docker --time command to -t since --time is deprecated on v28
This commit is contained in:
@@ -2890,7 +2890,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) {
|
||||
|
||||
Reference in New Issue
Block a user