fix(server): update server usability check to reflect actual Docker availability status
This commit is contained in:
parent
4f8dfa598e
commit
2ef139bc42
1 changed files with 2 additions and 2 deletions
|
|
@ -78,11 +78,11 @@ public function handle()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Server is reachable, check if Docker is available
|
// Server is reachable, check if Docker is available
|
||||||
// $isUsable = $this->checkDockerAvailability();
|
$isUsable = $this->checkDockerAvailability();
|
||||||
|
|
||||||
$this->server->settings->update([
|
$this->server->settings->update([
|
||||||
'is_reachable' => true,
|
'is_reachable' => true,
|
||||||
'is_usable' => true,
|
'is_usable' => $isUsable,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue