if (publishedPorts.length > 0) {
    const publishedSection = statusDisplay.addLine('Published Ports (Inside Container => On Server):');
    publishedPorts.forEach(port => {
      publishedSection.addLine(`- ${port}`);
    });