feat : display container port mappings in environment health
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

Extract exposed ports from docker inspect and show them as badges (hostPort:containerPort)
in the environment health section.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-04-08 11:27:46 +02:00
parent 123d9b306f
commit ab2b3fd9ef
6 changed files with 52 additions and 4 deletions

View File

@@ -26,4 +26,6 @@ final class EnvironmentHealth
public string $memoryUsage = '';
public string $memoryLimit = '';
public float $memoryPercent = 0.0;
/** @var list<array{hostPort: string, containerPort: string, protocol: string}> */
public array $ports = [];
}