@php // container state -> status-pill status $pill = fn (string $s) => match (true) { $s === 'running' => 'online', $s === 'paused' => 'warning', in_array($s, ['created', 'restarting'], true) => 'pending', default => 'offline', // exited / dead / removing }; $hostOn = $this->hostConfigured(); $effTarget = $this->effectiveTarget(); $active = $this->activeServer(); $targetName = $effTarget === 'host' ? __('docker.host_target') : $active?->name; @endphp
{{ __('docker.eyebrow') }}
{{ __('docker.host_unconfigured_title') }}
{{ __('docker.host_unconfigured_hint') }}
{{ __('docker.not_installed_title') }}
{{ __('docker.not_installed_hint') }}
{{ __('docker.unavailable_title') }}
{{ __('docker.unavailable_hint') }}
@if ($error){{ $error }}
@endif
{{ __('docker.empty_title') }}
{{ __('docker.empty_hint') }}
{{ $c['name'] }}
{{-- Just the image — the raw port list is noisy and rarely useful at a glance. --}}{{ $c['image'] }}