{# docker/rows.html — HTMX fragment for the Docker main page #} {# ── Summary strip ─────────────────────────────────────────────────────────── #}
| Container | Image | Ports | CPU % | CPU history | Mem % | Mem history |
|---|---|---|---|---|---|---|
|
{{ c.name }}
{{ c.status }}
|
{% for p in item.ports %}
{{ p.host_port }}:{{ p.container_port }}/{{ p.protocol }}
{% endfor %}
|
{% if c.cpu_pct is not none %} {{ "%.1f" | format(c.cpu_pct) }}% {% else %} — {% endif %} | {{ item.sparkline_cpu | safe }} | {% if c.mem_pct is not none %} {{ "%.1f" | format(c.mem_pct) }}% {% else %} — {% endif %} | {{ item.sparkline_mem | safe }} |