fix docker minimum version

This commit is contained in:
peaklabs-dev
2024-11-12 13:27:26 +01:00
parent 0ce2fbff40
commit 408ba9cc7a
5 changed files with 7 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ class InstallDocker
public function handle(Server $server)
{
$dockerVersion = config('constants.docker_install_version');
$dockerVersion = config('constants.docker.minimum_required_version');
$supported_os_type = $server->validateOS();
if (! $supported_os_type) {
throw new \Exception('Server OS type is not supported for automated installation. Please install Docker manually before continuing: <a target="_blank" class="underline" href="https://coolify.io/docs/installation#manually">documentation</a>.');