Localhost

@if ($server->isFunctional()) The server is reachable, validated, and ready to host resources. @else Validate the local Docker connection before using this server. @endif

@if ($server->server_metadata) @php($meta = $server->server_metadata)
@foreach ([ 'Operating system' => $meta['os'] ?? 'N/A', 'Architecture' => $meta['arch'] ?? 'N/A', 'Kernel' => $meta['kernel'] ?? 'N/A', 'CPU cores' => $meta['cpus'] ?? 'N/A', 'Memory' => isset($meta['memory_bytes']) ? round($meta['memory_bytes'] / 1073741824, 1) . ' GB' : 'N/A', 'Up since' => $meta['uptime_since'] ?? 'N/A', ] as $detailLabel => $detailValue)
{{ $detailLabel }}
{{ $detailValue }}
@endforeach
@endif
@if ($server->validation_logs)
{!! $server->validation_logs !!}
@endif Validate connection