Container List {% if data.container %}> {{ data.container.id }} {% endif %}
{% if data.container %}
ID |
{{ data.container.id }} |
Image |
{{ data.container.image }} |
Type |
{{ data.container.type }} |
Owner |
{% if data.container.user %}{{data.container.user}}{% else %}Platform{% endif %} |
Registry |
{{ data.container.registry }} |
Service port(s) |
{{ data.container.service_ports}} |
{% else %}
{% for container in data.platform_containers %}
ID |
{{ container.id }} |
Image |
{{ container.image }} |
Type |
{{ container.type }} |
Owner |
Platform |
Registry |
{{ container.registry }} |
Service port(s) |
{{ container.service_ports}} |
{% endfor %}
{% for container in data.user_containers %}
ID |
{{ container.id }} |
Image |
{{ container.image }} |
Type |
{{ container.type }} |
Owner |
{{container.user}} |
Registry |
{{ container.registry }} |
Service port(s) |
{{ container.service_ports}} |
Operations |
Delete |
{% endfor %}
Add new...
{% endif %}